2020-03-26 05:54:33 +03:00
|
|
|
[package]
|
|
|
|
name = "importer"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
|
2021-10-21 19:38:06 +03:00
|
|
|
edition = "2021"
|
2020-03-26 05:54:33 +03:00
|
|
|
|
2020-05-17 19:25:44 +03:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
scenarios = ["gdal"]
|
|
|
|
|
2020-03-26 05:54:33 +03:00
|
|
|
[dependencies]
|
2020-11-30 21:58:47 +03:00
|
|
|
aabb-quadtree = "0.1.0"
|
2021-01-02 21:28:00 +03:00
|
|
|
abstio = { path = "../abstio" }
|
2020-03-26 05:54:33 +03:00
|
|
|
abstutil = { path = "../abstutil" }
|
2021-02-04 05:13:06 +03:00
|
|
|
anyhow = "1.0.38"
|
2020-11-06 03:16:40 +03:00
|
|
|
collisions = { path = "../collisions" }
|
2020-03-26 05:54:33 +03:00
|
|
|
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"
|
2022-02-22 19:45:49 +03:00
|
|
|
geojson = { version = "0.22.2", features = ["geo-types"] }
|
2020-03-26 05:54:33 +03:00
|
|
|
geom = { path = "../geom" }
|
2021-05-23 02:23:06 +03:00
|
|
|
gdal = { version = "0.8.0", optional = true }
|
2020-03-26 05:54:33 +03:00
|
|
|
kml = { path = "../kml" }
|
2021-02-04 05:13:06 +03:00
|
|
|
log = "0.4.14"
|
2020-03-26 20:26:01 +03:00
|
|
|
map_model = { path = "../map_model" }
|
2021-01-13 22:18:51 +03:00
|
|
|
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"
|
2020-04-25 23:14:48 +03:00
|
|
|
sim = { path = "../sim" }
|
2022-01-28 15:33:39 +03:00
|
|
|
synthpop = { path = "../synthpop" }
|
2021-10-25 23:02:00 +03:00
|
|
|
structopt = "0.3.23"
|
2021-06-09 20:21:25 +03:00
|
|
|
|
|
|
|
# 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"] }
|
2022-01-17 20:30:51 +03:00
|
|
|
fs-err = "2.6.0"
|