abstreet/game/Cargo.toml

54 lines
1.4 KiB
TOML
Raw Normal View History

[package]
name = "game"
version = "0.1.0"
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
edition = "2021"
2020-10-08 22:26:54 +03:00
description = "A traffic simulation game based on OpenStreetMap"
repository = "https://github.com/a-b-street/abstreet"
2020-10-08 22:26:54 +03:00
license = "Apache-2.0"
[lib]
crate-type = ["cdylib", "lib"]
2020-02-15 03:15:44 +03:00
[features]
default = ["clipboard", "map_gui/native", "widgetry/native-backend"]
wasm = ["getrandom/js", "map_gui/wasm", "wasm-bindgen", "widgetry/wasm-backend"]
2020-02-15 03:15:44 +03:00
[dependencies]
aabb-quadtree = "0.1.0"
abstio = { path = "../abstio" }
2018-06-22 21:01:44 +03:00
abstutil = { path = "../abstutil" }
2021-02-04 05:13:06 +03:00
anyhow = "1.0.38"
clipboard = { version = "0.5.0", optional = true }
collisions = { path = "../collisions" }
2020-09-24 19:36:26 +03:00
colorous = "1.0.3"
contour = "0.4.0"
csv = "1.1.4"
2020-09-24 19:36:26 +03:00
downcast-rs = "1.2.0"
2021-02-04 05:13:06 +03:00
enumset = "1.0.3"
fs-err = "2.6.0"
futures-channel = { version = "0.3.12"}
geo = "0.18"
geojson = { version = "0.22.0", features = ["geo-types"] }
2018-06-29 05:48:11 +03:00
geom = { path = "../geom" }
getrandom = { version = "0.2.3", optional = true }
2020-09-24 19:36:26 +03:00
instant = "0.1.7"
kml = { path = "../kml" }
lazy_static = "1.4.0"
2021-02-04 05:13:06 +03:00
log = "0.4.14"
2020-06-19 03:44:12 +03:00
lttb = "0.2.0"
maplit = "1.0.2"
map_gui = { path = "../map_gui" }
map_model = { path = "../map_model" }
2021-02-04 05:13:06 +03:00
petname = "1.1.0"
popdat = { path = "../popdat" }
2021-02-04 05:13:06 +03:00
rand = "0.8.3"
2021-01-04 06:48:03 +03:00
rand_xorshift = "0.3.0"
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"
2021-01-04 06:48:03 +03:00
svg_face = "0.1.3"
sim = { path = "../sim" }
structopt = "0.3.23"
2021-02-04 05:13:06 +03:00
wasm-bindgen = { version = "0.2.70", optional = true }
widgetry = { path = "../widgetry" }