-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (28 loc) · 923 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
29
30
31
[package]
name = "surfrs"
version = "0.1.0"
edition = "2021"
# 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"
geojson = "0.24.0"
csv = "1.1"
quick-xml = {version = "0.28.0", features = ["serialize"] }
chrono = { version = "0.4", features = ["serde"] }
regex = "1"
num-traits = "0.2.15"
rand = "0.8.5"
itertools = "0.10.5"
sunrise = "1.0.0"
contour = { version = "0.7.0", features = ["geojson"] }
kdtree = "0.5.1"
image = "0.24.5"
gribberish = { git = "https://github.com/mpiannucci/gribberish" }
readap = { git = "https://github.com/mpiannucci/readap" }
[dev-dependencies]
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1", features = ["full"] }
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
rayon = "1.5.1"
futures = "0.3"