abstreet/fifteen_min/Cargo.toml

25 lines
614 B
TOML
Raw Normal View History

[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 = ["map_gui/wasm", "wasm-bindgen", "widgetry/wasm-backend"]
[dependencies]
abstio = { path = "../abstio" }
abstutil = { path = "../abstutil" }
2020-12-15 04:48:47 +03:00
contour = "0.3.0"
geojson = "0.21.0"
geom = { path = "../geom" }
log = "0.4"
map_gui = { path = "../map_gui" }
map_model = { path = "../map_model" }
wasm-bindgen = { version = "0.2.68", optional = true }
widgetry = { path = "../widgetry" }