abstreet/santa/Cargo.toml

27 lines
705 B
TOML
Raw Normal View History

[package]
name = "santa"
version = "0.1.0"
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
edition = "2018"
2020-12-03 00:44:10 +03:00
[lib]
crate-type = ["cdylib", "lib"]
[features]
default = ["map_gui/native", "widgetry/native-backend"]
2020-12-03 00:44:10 +03:00
wasm = ["map_gui/wasm", "wasm-bindgen", "widgetry/wasm-backend"]
[dependencies]
abstutil = { path = "../abstutil" }
geom = { path = "../geom" }
kml = { path = "../kml" }
log = "0.4.11"
map_gui = { path = "../map_gui" }
map_model = { path = "../map_model" }
rand = "0.7.0"
rand_xorshift = "0.2.0"
rodio = { version = "0.13.0", default-features = false, features = ["vorbis"] }
serde = "1.0.116"
2020-12-03 00:44:10 +03:00
wasm-bindgen = { version = "0.2.68", optional = true }
widgetry = { path = "../widgetry" }