abstreet/importer/Cargo.toml

34 lines
816 B
TOML
Raw Normal View History

[package]
name = "importer"
version = "0.1.0"
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
edition = "2018"
[features]
default = []
scenarios = ["gdal"]
[dependencies]
aabb-quadtree = "0.1.0"
abstio = { path = "../abstio" }
abstutil = { path = "../abstutil" }
2021-02-04 05:13:06 +03:00
anyhow = "1.0.38"
collisions = { path = "../collisions" }
convert_osm = { path = "../convert_osm" }
2020-11-11 23:02:53 +03:00
csv = "1.1.4"
geo = "0.18.0"
geojson = { version = "0.22.0", features = ["geo-types"] }
geom = { path = "../geom" }
gdal = { version = "0.8.0", optional = true }
kml = { path = "../kml" }
2021-02-04 05:13:06 +03:00
log = "0.4.14"
map_model = { path = "../map_model" }
osmio = "0.4.0"
popdat = { path = "../popdat" }
2021-02-04 05:13:06 +03:00
rand = "0.8.3"
2021-01-04 06:48:03 +03:00
rand_xorshift = "0.3.0"
2021-02-04 05:13:06 +03:00
serde = "1.0.123"
2021-01-04 07:01:27 +03:00
serde_json = "1.0.61"
sim = { path = "../sim" }
tokio = { version = "1.1.1", features = ["full"] }