-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
52 lines (42 loc) · 1.04 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
[package]
name = "fastgtfs"
version = "0.1.0"
authors = ["nicomazz <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
lazy_static = "1.4.0"
geo = "0.14.1"
itertools = "0.9.0"
rayon = "1.1"
log = "0.4"
csv = "1.1"
serde = { version = "1.0.114", features = ["derive"] }
serde_json = "1.0"
flexbuffers = "0.2.2"
chrono = { version = "0.4", features = ["serde"] }
cached = "0.23.0"
instant = { version = "0.1", features = ["wasm-bindgen", "now"] }
[dev-dependencies]
criterion = "0.3"
env_logger = "0.7.1"
rand = "0.8.0"
[[bench]]
name = "parsing_benchmark"
harness = false
[target.'cfg(target_arch = "wasm32")'.dependencies]
futures = "0.3"
bytes = "1.0.1"
zip = { version = "0.5.13", default-features = false, features = ["deflate"] }
reqwest = { version = "0.11", features = ["blocking"] }
wasm-timer = "0.2.5"
[profile.release]
lto = true
[lib]
bench = false
name = "fastgtfs"
crate-type = ["cdylib", "rlib"]
[workspace]
members = [
"fastgtfs-js"
]