forked from alan-turing-institute/uatk-aspics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (43 loc) · 1.47 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
[package]
name = "ramp"
version = "0.1.0"
edition = "2021"
authors = ["Dustin Carlino <[email protected]>"]
description = "Rapid Assistance in Modelling the Pandemic"
[dependencies]
anyhow = "1.0.51"
bincode = "1.3.3"
cap = "0.1.0"
clap = { version = "3.0.0", features = ["derive"] }
csv = "1.1.6"
derive_more = "0.99.17"
enum-map = { version = "1.1.1", features = ["serde"] }
flate2 = "1.0.22"
fs-err = "2.6.0"
futures-util = "0.3.19"
geo = { version = "0.18.0", features = ["use-proj", "use-serde"] }
geojson = { version = "0.22.2", features = ["geo-types"] }
indicatif = { git = "https://github.com/mitsuhiko/indicatif", rev = "0e57b21e7ab1752d3796f41fa310bbf96ce5f4ac" }
log = "0.4.14"
ndarray = "0.15.4"
ndarray-npy = "0.8.1"
ndarray-rand = "0.14.0"
ordered-float = "2.8.0"
proj = "0.20.5"
rand = "0.8.4"
rand_distr = "0.4.2"
reqwest = { version = "0.11.8", features = ["stream"] }
rstar = "0.8.4"
serde = { version = "1.0.132", features = ["derive"] }
serde_json = "1.0.73"
shapefile = { version = "0.3.0", features = ["geo-types"] }
simplelog = "0.11.1"
tar = "0.4.38"
tokio = { version = "1.15.0", features = ["full"] }
typed-index-collections = { version = "3.0.3", features = ["serde-std"] }
# 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