abstreet/map_editor/Cargo.toml

21 lines
523 B
TOML
Raw Normal View History

[package]
name = "map_editor"
version = "0.1.0"
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
edition = "2018"
2020-02-15 03:04:33 +03:00
[features]
default = ["widgetry/native-backend"]
wasm = ["widgetry/wasm-backend"]
2020-02-15 03:04:33 +03:00
[dependencies]
aabb-quadtree = "0.1.0"
abstio = { path = "../abstio" }
abstutil = { path = "../abstutil" }
2021-02-20 20:31:52 +03:00
convert_osm = { path = "../convert_osm" }
geom = { path = "../geom" }
2021-02-04 05:13:06 +03:00
log = "0.4.14"
map_gui = { path = "../map_gui", features=["native"] }
2018-11-14 21:11:03 +03:00
map_model = { path = "../map_model" }
widgetry = { path = "../widgetry" }