abstreet/sim/Cargo.toml
Dustin Carlino 231acf47a2 Step 2: try to get the sim crate to build again
Scenario and TripEndpoint have some methods defined on them that're
specific to sim. Do we rearrange these methods entirely or make some
kind of wrapper types?
2022-01-28 13:13:43 +00:00

30 lines
633 B
TOML

[package]
name = "sim"
version = "0.1.0"
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
edition = "2021"
[dependencies]
abstio = { path = "../abstio" }
abstutil = { path = "../abstutil" }
anyhow = "1.0.38"
ctrlc = { version = "3.1.7", optional = true }
downcast-rs = "1.2.0"
enum_dispatch = "0.3.5"
fs-err = "2.6.0"
geom = { path = "../geom" }
instant = "0.1.7"
libm = "0.2.1"
log = "0.4.14"
map_model = { path = "../map_model" }
rand = "0.8.3"
rand_distr = "0.4.0"
rand_xorshift = "0.3.0"
serde = "1.0.123"
structopt = "0.3.23"
synthpop = { path = "../synthpop" }
[[bin]]
name = "run_scenario"
required-features = ["ctrlc"]