2018-04-11 03:38:26 +03:00
|
|
|
[package]
|
|
|
|
name = "sim"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
|
2021-10-21 19:38:06 +03:00
|
|
|
edition = "2021"
|
2018-04-11 03:38:26 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2021-01-02 21:28:00 +03:00
|
|
|
abstio = { path = "../abstio" }
|
2018-06-25 19:06:40 +03:00
|
|
|
abstutil = { path = "../abstutil" }
|
2021-02-04 05:13:06 +03:00
|
|
|
anyhow = "1.0.38"
|
2020-10-19 22:52:26 +03:00
|
|
|
ctrlc = { version = "3.1.7", optional = true }
|
2020-09-24 19:36:26 +03:00
|
|
|
downcast-rs = "1.2.0"
|
2021-02-04 05:13:06 +03:00
|
|
|
enum_dispatch = "0.3.5"
|
2022-01-17 20:30:51 +03:00
|
|
|
fs-err = "2.6.0"
|
2018-06-29 05:48:11 +03:00
|
|
|
geom = { path = "../geom" }
|
2020-09-24 19:36:26 +03:00
|
|
|
instant = "0.1.7"
|
2020-05-20 01:06:32 +03:00
|
|
|
libm = "0.2.1"
|
2021-02-04 05:13:06 +03:00
|
|
|
log = "0.4.14"
|
2018-04-11 03:38:26 +03:00
|
|
|
map_model = { path = "../map_model" }
|
2021-02-04 05:13:06 +03:00
|
|
|
rand = "0.8.3"
|
2021-01-04 06:48:03 +03:00
|
|
|
rand_distr = "0.4.0"
|
|
|
|
rand_xorshift = "0.3.0"
|
2021-02-04 05:13:06 +03:00
|
|
|
serde = "1.0.123"
|
2021-10-26 21:10:08 +03:00
|
|
|
structopt = "0.3.23"
|
2022-01-28 14:37:12 +03:00
|
|
|
synthpop = { path = "../synthpop" }
|
2020-10-19 22:52:26 +03:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "run_scenario"
|
|
|
|
required-features = ["ctrlc"]
|