-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (26 loc) · 967 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "nicklinref"
version = "1.1.1"
description = "nicklinref is a server that slices segments of the Main Roads Western Australia road network based on slk"
authors = ["thehappycheese"]
edition = "2021"
readme = "README.md"
repository = "https://github.com/thehappycheese/nicklinref_rust"
[dependencies]
reqwest = { version = "0.11", default-features = false, features = [
"rustls-tls",
"json",
] }
tokio = { version = "1.4.0", features = ["macros", "rt-multi-thread"] }
warp = { version = "0.3.5", features = ["compression"] }
bytes = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
nickslinetoolsrust = { git = "https://github.com/thehappycheese/nicks_line_tools_rust.git", tag = "v1.2.0" }
lz-fear = "0.1.1"
figment = { version = "0.10.10", features = ["json", "env"] }
clap = { version = "4.3.2", features = ["derive", "env"] }
[dev-dependencies]
byteorder = "1.4.3"
flate2 = "1.0.26"
serde_urlencoded = "0.7.1"