abstreet/importer/Cargo.toml
Dustin Carlino c9c6f240ae Remove timer.{note, warn, error} in favor of the log crate. #262
Originally, the intention of the deleted calls was to not interrupt
Timer progress bars with warnings. But the output of things like the
importer is impossible to read anyway. Strongly considering explicitly
sending logs and timing info to separate places and using something like
multitail for live progress.

Unplumb timer from LOADS of places that just needed it for logging.
2021-01-21 19:22:02 -08:00

32 lines
708 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.37"
collisions = { path = "../collisions" }
convert_osm = { path = "../convert_osm" }
csv = "1.1.4"
geo = "0.16.0"
geojson = "0.21.0"
geom = { path = "../geom" }
gdal = { version = "0.7.0", optional = true }
kml = { path = "../kml" }
log = "0.4.11"
map_model = { path = "../map_model" }
popdat = { path = "../popdat" }
rand = "0.8.1"
rand_xorshift = "0.3.0"
serde = "1.0.116"
serde_json = "1.0.61"
sim = { path = "../sim" }