abstreet/map_editor/Cargo.toml

27 lines
717 B
TOML
Raw Normal View History

[package]
name = "map_editor"
version = "0.1.0"
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
edition = "2021"
[lib]
crate-type = ["cdylib", "lib"]
2020-02-15 03:04:33 +03:00
[features]
default = ["map_gui/native", "widgetry/native-backend"]
wasm = ["getrandom/js", "map_gui/wasm", "wasm-bindgen", "widgetry/wasm-backend"]
2020-02-15 03:04:33 +03:00
[dependencies]
aabb-quadtree = "0.1.0"
abstio = { path = "../abstio" }
abstutil = { path = "../abstutil" }
geom = { path = "../geom" }
getrandom = { version = "0.2.3", optional = true }
2021-02-04 05:13:06 +03:00
log = "0.4.14"
map_gui = { path = "../map_gui" }
2018-11-14 21:11:03 +03:00
map_model = { path = "../map_model" }
sim = { path = "../sim" }
structopt = "0.3.23"
wasm-bindgen = { version = "0.2.70", optional = true }
widgetry = { path = "../widgetry" }