abstreet/ezgui/Cargo.toml

36 lines
1.1 KiB
TOML
Raw Normal View History

[package]
name = "ezgui"
version = "0.1.0"
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
edition = "2018"
[features]
default = ["glium-backend"]
glium-backend = ["glium", "glutin", "usvg/text"]
glow-backend = ["glow", "glutin", "usvg/text"]
wasm-backend = ["glow/stdweb", "instant/stdweb", "stdweb", "webgl_stdweb", "winit/stdweb"]
profiler = ["cpuprofiler"]
[dependencies]
2018-09-26 00:36:02 +03:00
abstutil = { path = "../abstutil" }
# backtrace = "0.3.40"
cpuprofiler = { version = "0.0.3", optional = true }
geom = { path = "../geom" }
glium = { version = "0.26.0", optional = true }
glow = { version = "0.4.0", optional = true, default-features=false }
glutin = { git = "https://github.com/dabreegster/glutin", optional = true }
2020-02-07 22:32:10 +03:00
htmlescape = "0.3.1"
instant = "0.1.2"
lru = "0.4.3"
lyon = "0.15.6"
2019-08-02 17:37:17 +03:00
ordered-float = "1.0.1"
serde = "1.0.98"
serde_derive = "1.0.98"
2020-03-17 20:35:37 +03:00
simsearch = "0.2.0"
stdweb = { version = "0.4.20", optional = true }
stretch = "0.3.2"
2018-12-10 02:16:32 +03:00
textwrap = "0.11"
usvg = { git = "https://github.com/dabreegster/resvg", default-features=false }
webgl_stdweb = { version = "0.3", optional = true }
winit = "0.21.0"