mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-28 12:12:00 +03:00
30 lines
764 B
TOML
30 lines
764 B
TOML
[package]
|
|
name = "ezgui"
|
|
version = "0.1.0"
|
|
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
default = []
|
|
profiler = ["cpuprofiler"]
|
|
|
|
[dependencies]
|
|
abstutil = { path = "../abstutil" }
|
|
# backtrace = "0.3.40"
|
|
cpuprofiler = { version = "0.0.3", optional = true }
|
|
geom = { path = "../geom" }
|
|
glium = "0.25.1"
|
|
glium-glyph = "0.6.0"
|
|
glutin = "0.21.0"
|
|
image = "0.22.2"
|
|
lyon = "0.14.2"
|
|
ordered-float = "1.0.1"
|
|
serde = "1.0.98"
|
|
serde_derive = "1.0.98"
|
|
simsearch = "0.1.4"
|
|
stretch = "0.3.2"
|
|
textwrap = "0.11"
|
|
# TODO We need the ability to remove the harfbuzz dependency, which doesn't
|
|
# build well on Windows.
|
|
usvg = { git = "https://github.com/RazrFalcon/resvg", rev = "2e56929886736c0692a50b2163097f1a6c14b52f", default-features = false }
|