2018-06-22 21:01:44 +03:00
|
|
|
[package]
|
|
|
|
name = "abstutil"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
|
2021-10-21 19:38:06 +03:00
|
|
|
edition = "2021"
|
2018-06-22 21:01:44 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2021-02-04 05:13:06 +03:00
|
|
|
anyhow = "1.0.38"
|
2020-09-24 19:36:26 +03:00
|
|
|
bincode = "1.3.1"
|
2020-12-07 23:58:47 +03:00
|
|
|
env_logger = { version = "0.8.2" }
|
2020-09-24 19:36:26 +03:00
|
|
|
instant = "0.1.7"
|
2021-01-04 07:01:27 +03:00
|
|
|
itertools = "0.10.0"
|
2021-02-04 05:13:06 +03:00
|
|
|
log = "0.4.14"
|
2020-09-24 19:36:26 +03:00
|
|
|
num_cpus = "1.13.0"
|
2019-05-26 05:11:29 +03:00
|
|
|
scoped_threadpool = "0.1.9"
|
2021-05-14 18:32:56 +03:00
|
|
|
serde = { version = "1.0.123", features=["derive"] }
|
2021-01-04 07:01:27 +03:00
|
|
|
serde_json = "1.0.61"
|
2019-03-12 02:23:39 +03:00
|
|
|
|
2019-04-19 19:16:13 +03:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2021-02-04 05:13:06 +03:00
|
|
|
termion = "1.5.6"
|
2020-02-16 03:44:06 +03:00
|
|
|
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
2020-11-27 01:40:05 +03:00
|
|
|
console_log = "0.2.0"
|
2021-02-04 05:13:06 +03:00
|
|
|
web-sys = { version = "0.3.47", features=["Location", "Window"] }
|