abstreet/game/Cargo.toml

41 lines
1.1 KiB
TOML
Raw Normal View History

[package]
name = "game"
version = "0.1.0"
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
edition = "2018"
2020-02-15 03:15:44 +03:00
# TODO Can't toggle based on target_arch. https://github.com/rust-lang/cargo/issues/2524
# cargo web start --target wasm32-unknown-unknown --no-default-features --features wasm
[features]
2020-05-11 22:18:19 +03:00
default = ["built", "ezgui/glium-backend", "reqwest"]
2020-02-15 03:15:44 +03:00
wasm = ["ezgui/wasm-backend"]
[dependencies]
aabb-quadtree = "0.1.0"
2018-06-22 21:01:44 +03:00
abstutil = { path = "../abstutil" }
built = { version = "0.4.2", optional = true, features=["chrono"] }
chrono = "0.4.10"
2020-04-28 04:48:19 +03:00
colorous = "1.0.1"
downcast-rs = "1.1.1"
2020-02-15 03:15:44 +03:00
ezgui = { path = "../ezgui", default-features=false }
2018-06-29 05:48:11 +03:00
geom = { path = "../geom" }
instant = "0.1.2"
kml = { path = "../kml" }
lttb = { git = "https://github.com/jeromefroe/lttb-rs" }
maplit = "1.0.2"
map_model = { path = "../map_model" }
2020-05-09 20:34:52 +03:00
petgraph = "0.5.0"
2020-05-29 21:37:21 +03:00
petname = "1.0.12"
rand = "0.7.0"
rand_xorshift = "0.2.0"
2020-05-11 22:18:19 +03:00
reqwest = { version = "0.10.4", optional = true, default-features=false, features=["blocking", "default-tls"] }
serde = "1.0.110"
svg_face = "0.1.2"
sim = { path = "../sim" }
webbrowser = "0.5.2"
2020-05-11 22:18:19 +03:00
xmltree = "0.10.0"
2019-03-12 03:18:30 +03:00
[build-dependencies]
built = "0.4.2"
2019-03-12 03:18:30 +03:00
walkdir = "2.2.7"