2020-03-26 05:54:33 +03:00
|
|
|
[package]
|
|
|
|
name = "importer"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
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"
|
2021-02-09 03:34:56 +03:00
|
|
|
geo = "0.17.0"
|
|
|
|
geojson = "0.22"
|
2020-03-26 05:54:33 +03:00
|
|
|
geom = { path = "../geom" }
|
2021-02-04 05:13:06 +03:00
|
|
|
gdal = { version = "0.7.2", 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-10 23:35:59 +03:00
|
|
|
reqwest = { version = "0.11.0", default-features=false, features=["blocking"] }
|
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" }
|