mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-24 09:24:26 +03:00
55 lines
1.4 KiB
TOML
55 lines
1.4 KiB
TOML
[package]
|
|
name = "game"
|
|
version = "0.1.0"
|
|
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
|
|
edition = "2021"
|
|
description = "A traffic simulation game based on OpenStreetMap"
|
|
repository = "https://github.com/a-b-street/abstreet"
|
|
license = "Apache-2.0"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "lib"]
|
|
|
|
[features]
|
|
default = ["clipboard", "map_gui/native", "widgetry/native-backend"]
|
|
wasm = ["getrandom/js", "map_gui/wasm", "wasm-bindgen", "widgetry/wasm-backend"]
|
|
|
|
[dependencies]
|
|
aabb-quadtree = "0.1.0"
|
|
abstio = { path = "../abstio" }
|
|
abstutil = { path = "../abstutil" }
|
|
anyhow = "1.0.38"
|
|
clipboard = { version = "0.5.0", optional = true }
|
|
collisions = { path = "../collisions" }
|
|
colorous = "1.0.3"
|
|
contour = "0.4.0"
|
|
csv = "1.1.4"
|
|
downcast-rs = "1.2.0"
|
|
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"] }
|
|
geom = { path = "../geom" }
|
|
getrandom = { version = "0.2.3", optional = true }
|
|
instant = "0.1.7"
|
|
kml = { path = "../kml" }
|
|
lazy_static = "1.4.0"
|
|
log = "0.4.14"
|
|
lttb = "0.2.0"
|
|
maplit = "1.0.2"
|
|
map_gui = { path = "../map_gui" }
|
|
map_model = { path = "../map_model" }
|
|
petname = "1.1.0"
|
|
popdat = { path = "../popdat" }
|
|
rand = "0.8.3"
|
|
rand_xorshift = "0.3.0"
|
|
serde = "1.0.123"
|
|
serde_json = "1.0.61"
|
|
svg_face = "0.1.3"
|
|
sim = { path = "../sim" }
|
|
synthpop = { path = "../synthpop" }
|
|
structopt = "0.3.23"
|
|
wasm-bindgen = { version = "0.2.70", optional = true }
|
|
widgetry = { path = "../widgetry" }
|