2018-11-14 02:50:37 +03:00
|
|
|
[package]
|
2019-09-23 23:54:09 +03:00
|
|
|
name = "map_editor"
|
2018-11-14 02:50:37 +03:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
|
2018-12-06 21:18:20 +03:00
|
|
|
edition = "2018"
|
2018-11-14 02:50:37 +03:00
|
|
|
|
2020-02-15 03:04:33 +03:00
|
|
|
# TODO Can't toggle based on target_arch. https://github.com/rust-lang/cargo/issues/2524
|
|
|
|
# cargo web start --target wasm32-unknown-unknown --no-default-features --features wasm
|
|
|
|
[features]
|
2020-08-21 02:59:54 +03:00
|
|
|
default = ["ezgui/glow-backend"]
|
2020-02-15 03:04:33 +03:00
|
|
|
wasm = ["ezgui/wasm-backend"]
|
|
|
|
|
2018-11-14 02:50:37 +03:00
|
|
|
[dependencies]
|
2019-10-17 01:08:22 +03:00
|
|
|
aabb-quadtree = "0.1.0"
|
2018-11-14 02:50:37 +03:00
|
|
|
abstutil = { path = "../abstutil" }
|
2020-02-15 03:04:33 +03:00
|
|
|
ezgui = { path = "../ezgui", default-features=false }
|
2018-11-14 02:50:37 +03:00
|
|
|
geom = { path = "../geom" }
|
2018-11-14 21:11:03 +03:00
|
|
|
map_model = { path = "../map_model" }
|