abstreet/abstutil/Cargo.toml

32 lines
642 B
TOML
Raw Normal View History

2018-06-22 21:01:44 +03:00
[package]
name = "abstutil"
version = "0.1.0"
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
edition = "2018"
2018-06-22 21:01:44 +03:00
2020-06-10 04:56:33 +03:00
[features]
profiler = ["cpuprofiler"]
2018-06-22 21:01:44 +03:00
[dependencies]
bincode = "1.1.2"
2020-06-10 04:56:33 +03:00
cpuprofiler = { version = "0.0.3", optional = true }
instant = "0.1.2"
itertools = "0.9.0"
lazy_static = "1.4.0"
num_cpus = "1.10.0"
rand = "0.7.0"
rand_xorshift = "0.2.0"
scoped_threadpool = "0.1.9"
serde = "1.0.110"
serde_json = "1.0.40"
2019-04-19 19:16:13 +03:00
[target.'cfg(target_os = "linux")'.dependencies]
2020-03-17 20:35:37 +03:00
procfs = "0.7.8"
2019-04-19 19:16:13 +03:00
[target.'cfg(unix)'.dependencies]
termion = "1.5.1"
[target.'cfg(target_arch = "wasm32")'.dependencies]
include_dir = "0.5.0"
stdweb = "0.4.20"