abstreet/widgetry_demo/Cargo.toml

25 lines
601 B
TOML
Raw Normal View History

[package]
name = "widgetry_demo"
version = "0.1.0"
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
edition = "2021"
[lib]
crate-type = ["cdylib", "lib"]
[features]
default = ["widgetry/native-backend"]
wasm = ["getrandom/js", "wasm-bindgen", "widgetry/wasm-backend"]
[dependencies]
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"
rand = "0.8.3"
2021-01-04 06:48:03 +03:00
rand_xorshift = "0.3.0"
svg_face = "0.1.3"
2021-02-04 05:13:06 +03:00
wasm-bindgen = { version = "0.2.70", optional = true }
widgetry = { path = "../widgetry" }