mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-24 09:24:26 +03:00
77709a24d6
Use it in the updater and all the importer tools. Only place it's not used yet is parking_mapper and the in-game updater. [rebuild] Also make the RunCommand state understand the control code for erasing the current line. It... sort of works.
23 lines
642 B
TOML
23 lines
642 B
TOML
[package]
|
|
name = "abstio"
|
|
version = "0.1.0"
|
|
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
abstutil = { path = "../abstutil" }
|
|
anyhow = "1.0.38"
|
|
bincode = "1.3.1"
|
|
instant = "0.1.7"
|
|
lazy_static = "1.4.0"
|
|
log = "0.4.14"
|
|
serde = "1.0.123"
|
|
serde_json = "1.0.61"
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
reqwest = { version = "0.11.0", default-features=false, features=["rustls-tls"] }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
include_dir = { git = "https://github.com/dabreegster/include_dir", branch = "union" }
|
|
web-sys = { version = "0.3.47", features=["Storage", "Window"] }
|