2020-12-15 20:21:26 -08:00
|
|
|
[package]
|
|
|
|
name = "colmena"
|
2021-11-18 15:41:39 -08:00
|
|
|
version = "0.3.0-pre"
|
2020-12-15 20:21:26 -08:00
|
|
|
authors = ["Zhaofeng Li <hello@zhaofeng.li>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-01-22 17:50:53 -08:00
|
|
|
async-stream = "0.3.2"
|
2020-12-15 20:21:26 -08:00
|
|
|
async-trait = "0.1.42"
|
2021-02-09 19:28:45 -08:00
|
|
|
atty = "0.2"
|
2022-01-03 10:37:03 -08:00
|
|
|
clap = "3.0.0"
|
|
|
|
clap_complete = "3.0.0"
|
2021-12-04 01:03:26 -08:00
|
|
|
clicolors-control = "1"
|
2022-01-03 10:37:03 -08:00
|
|
|
console = "0.15.0"
|
2021-11-18 13:15:20 -08:00
|
|
|
const_format = "0.2.22"
|
2022-01-03 10:37:03 -08:00
|
|
|
env_logger = "0.9.0"
|
2020-12-15 20:21:26 -08:00
|
|
|
futures = "0.3.8"
|
|
|
|
glob = "0.3.0"
|
2020-12-19 15:07:29 -08:00
|
|
|
hostname = "0.3.1"
|
2022-01-05 14:01:05 -08:00
|
|
|
indicatif = "0.17.0-rc.1"
|
2021-11-20 23:34:52 -08:00
|
|
|
itertools = "0.10.1"
|
2021-11-17 22:21:00 -08:00
|
|
|
lazy_static = "1.4.0"
|
2020-12-19 15:07:29 -08:00
|
|
|
libc = "0.2.81"
|
2020-12-15 20:21:26 -08:00
|
|
|
log = "0.4.11"
|
2020-12-18 01:27:44 -08:00
|
|
|
quit = "1.1.2"
|
2021-02-08 18:38:14 -08:00
|
|
|
regex = "1"
|
2020-12-15 20:21:26 -08:00
|
|
|
serde = { version = "1.0.118", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2021-02-12 13:55:44 -08:00
|
|
|
shell-escape = "0.1.5"
|
2022-01-03 10:37:03 -08:00
|
|
|
sys-info = "0.9.0"
|
2022-01-25 14:22:26 -08:00
|
|
|
snafu = "0.7.0"
|
2020-12-15 20:21:26 -08:00
|
|
|
tempfile = "3.1.0"
|
2022-01-22 17:50:53 -08:00
|
|
|
tokio-stream = "0.1.8"
|
2021-10-23 13:22:35 +02:00
|
|
|
users = "0.11.0"
|
2021-11-20 23:34:52 -08:00
|
|
|
uuid = { version = "0.8.2", features = ["serde", "v4"] }
|
2022-01-03 10:37:03 -08:00
|
|
|
validator = { version = "0.14", features = ["derive"] }
|
2021-02-10 10:29:17 -08:00
|
|
|
|
2022-01-05 14:01:05 -08:00
|
|
|
[dev-dependencies]
|
|
|
|
tokio-test = "0.4.0"
|
|
|
|
|
2021-02-10 10:29:17 -08:00
|
|
|
[dependencies.tokio]
|
|
|
|
version = "1.0.0"
|
|
|
|
features = [
|
|
|
|
"fs",
|
|
|
|
"io-util",
|
|
|
|
"macros",
|
|
|
|
"process",
|
|
|
|
"rt",
|
|
|
|
"rt-multi-thread",
|
|
|
|
"sync",
|
|
|
|
]
|