forked from alan-turing-institute/uatk-spc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
54 lines (50 loc) · 1.58 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "spc"
version = "0.1.0"
edition = "2021"
authors = ["Dustin Carlino <[email protected]>", "Hadrien Salat <[email protected]>", "Fernando Benitez <[email protected]>"]
description = "Synthetic Population Catalyst"
[dependencies]
anyhow = "1.0.68"
bincode = "1.3.3"
bytes = "1.3.0"
cap = "0.1.1"
clap = { version = "4.0.32", features = ["derive"] }
csv = "1.1.6"
derive_more = "0.99.17"
enum-map = { version = "2.4.2", features = ["serde"] }
flate2 = "1.0.25"
fs-err = "2.9.0"
futures-util = "0.3.25"
geo = { version = "0.26.0", features = ["use-serde"] }
geojson = { version = "0.24.0", features = ["geo-types"] }
indicatif = "0.17.2"
ndarray = "0.15.6"
ndarray-npy = "0.8.1"
ndarray-rand = "0.14.0"
ordered-float = "3.4.0"
prost = "0.11.5"
rand = "0.8.4"
rand_distr = "0.4.2"
rayon = "1.6.1"
reqwest = { version = "0.11.13", features = ["stream"] }
rstar = "0.11.0"
serde = { version = "1.0.152", features = ["derive"] }
shapefile = { version = "0.3.0", features = ["geo-types"] }
tar = "0.4.38"
tokio = { version = "1.23.0", features = ["full"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.16"
typed-index-collections = { version = "3.1.0", features = ["serde-std"] }
[build-dependencies]
prost-build = "0.11.5"
[dev-dependencies]
hex = "0.4.3"
sha2 = "0.10.6"
tempfile = "3.5.0"
# See https://doc.rust-lang.org/cargo/reference/profiles.html#overrides. This
# compiles all external dependencies in release mode, yielding great runtime
# speed, but only paying the cost of slow compilation once (since we don't
# update dependencies often).
[profile.dev.package."*"]
opt-level = 3