mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-24 09:24:26 +03:00
23 lines
631 B
TOML
23 lines
631 B
TOML
[package]
|
|
name = "osm_viewer"
|
|
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" }
|
|
geom = { path = "../geom" }
|
|
getrandom = { version = "0.2.0", optional = true }
|
|
map_gui = { path = "../map_gui" }
|
|
map_model = { path = "../map_model" }
|
|
wasm-bindgen = { version = "0.2.68", optional = true }
|
|
widgetry = { path = "../widgetry" }
|