abstreet/abstutil/Cargo.toml
Dustin Carlino dff6d6004d On the web, use URL query parameters as the command-line arguments. This
is a step towards initializing with any map. #344

As a demo, running locally, http://0.0.0.0:8000/?--dev&--color_scheme=night%20mode now works
2021-01-09 13:02:39 -08:00

25 lines
538 B
TOML

[package]
name = "abstutil"
version = "0.1.0"
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
edition = "2018"
[dependencies]
anyhow = "1.0.37"
bincode = "1.3.1"
env_logger = { version = "0.8.2" }
instant = "0.1.7"
itertools = "0.10.0"
log = "0.4.11"
num_cpus = "1.13.0"
scoped_threadpool = "0.1.9"
serde = "1.0.116"
serde_json = "1.0.61"
[target.'cfg(unix)'.dependencies]
termion = "1.5.1"
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_log = "0.2.0"
web-sys = { version = "0.3.4", features=["Location", "Window"] }