abstreet/fifteen_min/Cargo.toml
Michael Kirk 4b665c871d
update geo related deps. (#508)
geo-types to 0.7
geo to 0.17 which removes redundant old geo used by polylabel
geojson to 0.22
2021-02-08 16:34:56 -08:00

26 lines
679 B
TOML

[package]
name = "fifteen_min"
version = "0.1.0"
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
edition = "2018"
[lib]
crate-type = ["cdylib", "lib"]
[features]
default = ["map_gui/native", "widgetry/native-backend"]
wasm = ["getrandom/js", "map_gui/wasm", "wasm-bindgen", "widgetry/wasm-backend"]
[dependencies]
abstio = { path = "../abstio" }
abstutil = { path = "../abstutil" }
contour = "0.3.0"
geojson = "0.22"
geom = { path = "../geom" }
getrandom = { version = "0.2.2", optional = true }
log = "0.4"
map_gui = { path = "../map_gui" }
map_model = { path = "../map_model" }
wasm-bindgen = { version = "0.2.70", optional = true }
widgetry = { path = "../widgetry" }