abstreet/widgetry/Cargo.toml

34 lines
927 B
TOML
Raw Normal View History

[package]
name = "widgetry"
version = "0.1.0"
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
edition = "2018"
[features]
2021-03-26 01:23:13 +03:00
native-backend = ["glutin", "usvg/system-fonts", "usvg/text"]
wasm-backend = ["instant/wasm-bindgen", "usvg/text", "wasm-bindgen", "web-sys", "winit/web-sys"]
[dependencies]
2018-09-26 00:36:02 +03:00
abstutil = { path = "../abstutil" }
2021-02-04 05:13:06 +03:00
anyhow = "1.0.38"
# backtrace = "0.3.40"
2020-09-24 19:36:26 +03:00
downcast-rs = "1.2.0"
geojson = "0.22"
geom = { path = "../geom" }
2021-03-26 01:23:13 +03:00
glow = "0.8.1"
glutin = { version = "0.26.0", optional = true }
2020-02-07 22:32:10 +03:00
htmlescape = "0.3.1"
image = { version = "0.23.12", default-features = false, features=["png"] }
2020-09-24 19:36:26 +03:00
instant = "0.1.7"
2021-02-04 05:13:06 +03:00
log = "0.4.14"
2021-02-04 05:33:06 +03:00
lru = "0.6.4"
2020-11-11 23:02:53 +03:00
lyon = "0.16.2"
2021-02-04 05:13:06 +03:00
serde = "1.0.123"
2021-01-04 07:01:27 +03:00
serde_json = "1.0.61"
stretch = "0.3.2"
2021-02-04 05:13:06 +03:00
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"