abstreet/widgetry/Cargo.toml
Vinzent Steinberg a1899e29f8
Update dependencies (#656)
* Update dependencies

* Use github for polylabel, to make all dependencies use geo 0.18, not a mix of 0.18 and 0.17

* Downgrade lyon to avoid a crash

Co-authored-by: Dustin Carlino <dabreegster@gmail.com>
2021-05-22 16:23:06 -07:00

35 lines
1015 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.9.0"
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"
# Don't upgrade until a crash with opening lane info panels is fixed
lyon = "0.16.2"
serde = "1.0.123"
serde_json = "1.0.61"
stretch = "0.3.2"
ttf-parser = "0.12.0"
usvg = { version = "0.14.0", default-features=false, features=["text"] }
wasm-bindgen = { version = "0.2.70", optional = true }
web-sys = { version = "0.3.47", optional = true }
winit = "0.24.0"