abstreet/widgetry/Cargo.toml
Dustin Carlino 2c1c18d34a Upgrade glow
2021-03-25 15:23:13 -07:00

34 lines
927 B
TOML

[package]
name = "widgetry"
version = "0.1.0"
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
edition = "2018"
[features]
native-backend = ["glutin", "usvg/system-fonts", "usvg/text"]
wasm-backend = ["instant/wasm-bindgen", "usvg/text", "wasm-bindgen", "web-sys", "winit/web-sys"]
[dependencies]
abstutil = { path = "../abstutil" }
anyhow = "1.0.38"
# backtrace = "0.3.40"
downcast-rs = "1.2.0"
geojson = "0.22"
geom = { path = "../geom" }
glow = "0.8.1"
glutin = { version = "0.26.0", optional = true }
htmlescape = "0.3.1"
image = { version = "0.23.12", default-features = false, features=["png"] }
instant = "0.1.7"
log = "0.4.14"
lru = "0.6.4"
lyon = "0.16.2"
serde = "1.0.123"
serde_json = "1.0.61"
stretch = "0.3.2"
ttf-parser = "0.10.1"
usvg = { version = "0.13.1", default-features=false }
wasm-bindgen = { version = "0.2.70", optional = true }
web-sys = { version = "0.3.47", optional = true }
winit = "0.24.0"