abstreet/importer/Cargo.toml

43 lines
1.2 KiB
TOML
Raw Normal View History

[package]
name = "importer"
version = "0.1.0"
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
edition = "2021"
[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"
2022-04-21 04:57:22 +03:00
geo = "0.20.1"
geojson = { version = "0.22.2", features = ["geo-types"] }
geom = { path = "../geom" }
gdal = { version = "0.8.0", optional = true, features = ["bindgen"] }
kml = { path = "../kml" }
2021-02-04 05:13:06 +03:00
log = "0.4.14"
map_model = { path = "../map_model" }
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" }
2022-01-28 15:33:39 +03:00
synthpop = { path = "../synthpop" }
structopt = "0.3.23"
# These are all transitive dependencies, specified here only to enable certain
# features. This lets this crate share dependencies with game and most of the
# other binary crates. See
# https://www.reddit.com/r/rust/comments/nvd6y7/common_crates_in_cargo_workspace_recompiled_due/.
hashbrown = "0.9.1"
libc = { version = "0.2.94", features=["extra_traits"] }
num-integer = { version = "0.1.44", features=["i128", "std"] }
fs-err = "2.6.0"