abstreet/abstutil/Cargo.toml
Dustin Carlino 6919c24bf8 detect the data/ dir more intelligently. fixes #73. still need to
- consider collapsing the directory structure in the releases
- fix wasm

[rebuild]
2020-07-07 11:09:35 -07:00

32 lines
642 B
TOML

[package]
name = "abstutil"
version = "0.1.0"
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
edition = "2018"
[features]
profiler = ["cpuprofiler"]
[dependencies]
bincode = "1.1.2"
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"
[target.'cfg(target_os = "linux")'.dependencies]
procfs = "0.7.8"
[target.'cfg(unix)'.dependencies]
termion = "1.5.1"
[target.'cfg(target_arch = "wasm32")'.dependencies]
include_dir = "0.5.0"
stdweb = "0.4.20"