abstreet/importer/Cargo.toml
Dustin Carlino 27a07b02a6 Use the osmio crate to convert OSM pbf to xml, clipping it in the
process. #523

Tested really quickly, might not be working right yet. The .xml output
seems to have a duplicate '</osm>' for some reason.
2021-03-13 10:06:19 -08:00

34 lines
803 B
TOML

[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" }
anyhow = "1.0.38"
collisions = { path = "../collisions" }
convert_osm = { path = "../convert_osm" }
csv = "1.1.4"
geo = "0.17.0"
geojson = "0.22"
geom = { path = "../geom" }
gdal = { version = "0.7.2", optional = true }
kml = { path = "../kml" }
log = "0.4.14"
map_model = { path = "../map_model" }
osmio = "0.3.0"
popdat = { path = "../popdat" }
rand = "0.8.3"
rand_xorshift = "0.3.0"
reqwest = { version = "0.11.0", default-features=false, features=["blocking"] }
serde = "1.0.123"
serde_json = "1.0.61"
sim = { path = "../sim" }