mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-24 09:24:26 +03:00
27 lines
612 B
TOML
27 lines
612 B
TOML
[package]
|
|
name = "cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
aabb-quadtree = "0.1.0"
|
|
abstio = { path = "../abstio" }
|
|
abstutil = { path = "../abstutil" }
|
|
anyhow = "1.0.38"
|
|
csv = "1.1.4"
|
|
fs-err = "2.6.0"
|
|
geo = "0.19"
|
|
geojson = { version = "0.22.2", features = ["geo-types"] }
|
|
geom = { path = "../geom" }
|
|
importer = { path = "../importer" }
|
|
log = "0.4.14"
|
|
map_model = { path = "../map_model" }
|
|
osmio = "0.4.0"
|
|
rand = "0.8.3"
|
|
rand_xorshift = "0.3.0"
|
|
serde = "1.0.123"
|
|
sim = { path = "../sim" }
|
|
synthpop = { path = "../synthpop" }
|
|
structopt = "0.3.23"
|
|
tokio = { version = "1.1.1", features = ["full"] }
|