mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-24 17:37:22 +03:00
5c04923dff
widgetry, geom, and abstutil may wind up on crates.io in some form to let other projects use widgetry. abstio has A/B Street-specific tricks for reading data on native/web. Note widgetry still depends on abstio, will figure out how to clean that up next.
19 lines
483 B
TOML
19 lines
483 B
TOML
[package]
|
|
name = "abstio"
|
|
version = "0.1.0"
|
|
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
abstutil = { path = "../abstutil" }
|
|
bincode = "1.3.1"
|
|
instant = "0.1.7"
|
|
lazy_static = "1.4.0"
|
|
log = "0.4.11"
|
|
serde = "1.0.116"
|
|
serde_json = "1.0.57"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
include_dir = { git = "https://github.com/dabreegster/include_dir", branch = "union" }
|
|
web-sys = { version = "0.3.4", features=["Storage", "Window"] }
|