mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-24 09:24:26 +03:00
21 lines
584 B
TOML
21 lines
584 B
TOML
[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.38"
|
|
geom = { path = "../geom" }
|
|
log = "0.4.14"
|
|
map_gui = { path = "../map_gui" }
|
|
map_model = { path = "../map_model" }
|
|
reqwest = { version = "0.11.0", optional = true, default-features=false, features=["blocking", "rustls-tls"] }
|
|
widgetry = { path = "../widgetry" }
|
|
xmltree = "0.10.1"
|