abstreet/parking_mapper/Cargo.toml

21 lines
585 B
TOML
Raw Normal View History

[package]
name = "parking_mapper"
version = "0.1.0"
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
edition = "2018"
[features]
default = ["map_gui/native", "reqwest", "widgetry/native-backend"]
[dependencies]
abstio = { path = "../abstio" }
abstutil = { path = "../abstutil" }
anyhow = "1.0.37"
geom = { path = "../geom" }
log = "0.4.11"
map_gui = { path = "../map_gui" }
map_model = { path = "../map_model" }
2021-01-04 07:01:27 +03:00
reqwest = { version = "0.10.10", optional = true, default-features=false, features=["blocking", "rustls-tls"] }
widgetry = { path = "../widgetry" }
xmltree = "0.10.1"