-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
27 lines (24 loc) · 851 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
[package]
name = "preprocess"
version = "1.0.0-alpha.1"
authors = ["Harm Delva <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" # parse json
indicatif = "0.11.0" # progress bars
rayon = "1.1.0" # parallellization
priority-queue = "1.0.0"
clap = { version = "3.0.0-beta.1", features = ["yaml"] } # this might backfire, but most documentation uses this version now
cached = "0.12.0" # for reading in tiles
flexbuffers = "0.1.1"
reqwest = { version = "0.10.7", features = ["gzip", "blocking"] }
anyhow = "1.0"
thiserror = "1.0"
flate2 = { version = "1.0", features = ["zlib"], default-features = false }
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true