abstreet/fifteen_min/Cargo.toml

26 lines
679 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 = ["getrandom/js", "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.22"
geom = { path = "../geom" }
2021-02-04 05:13:06 +03:00
getrandom = { version = "0.2.2", optional = true }
log = "0.4"
map_gui = { path = "../map_gui" }
map_model = { path = "../map_model" }
2021-02-04 05:13:06 +03:00
wasm-bindgen = { version = "0.2.70", optional = true }
widgetry = { path = "../widgetry" }