2020-12-16 05:21:26 +01:00
|
|
|
[package]
|
|
|
|
name = "colmena"
|
2021-11-19 00:41:39 +01:00
|
|
|
version = "0.3.0-pre"
|
2020-12-16 05:21:26 +01: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-23 02:50:53 +01:00
|
|
|
async-stream = "0.3.2"
|
2020-12-16 05:21:26 +01:00
|
|
|
async-trait = "0.1.42"
|
2021-02-10 04:28:45 +01:00
|
|
|
atty = "0.2"
|
2022-01-03 19:37:03 +01:00
|
|
|
clap = "3.0.0"
|
|
|
|
clap_complete = "3.0.0"
|
2021-12-04 10:03:26 +01:00
|
|
|
clicolors-control = "1"
|
2022-01-03 19:37:03 +01:00
|
|
|
console = "0.15.0"
|
2021-11-18 22:15:20 +01:00
|
|
|
const_format = "0.2.22"
|
2022-01-03 19:37:03 +01:00
|
|
|
env_logger = "0.9.0"
|
2020-12-16 05:21:26 +01:00
|
|
|
futures = "0.3.8"
|
|
|
|
glob = "0.3.0"
|
2020-12-20 00:07:29 +01:00
|
|
|
hostname = "0.3.1"
|
2022-01-05 23:01:05 +01:00
|
|
|
indicatif = "0.17.0-rc.1"
|
2021-11-21 08:34:52 +01:00
|
|
|
itertools = "0.10.1"
|
2021-11-18 07:21:00 +01:00
|
|
|
lazy_static = "1.4.0"
|
2020-12-20 00:07:29 +01:00
|
|
|
libc = "0.2.81"
|
2020-12-16 05:21:26 +01:00
|
|
|
log = "0.4.11"
|
2020-12-18 10:27:44 +01:00
|
|
|
quit = "1.1.2"
|
2021-02-09 03:38:14 +01:00
|
|
|
regex = "1"
|
2020-12-16 05:21:26 +01:00
|
|
|
serde = { version = "1.0.118", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2021-02-12 22:55:44 +01:00
|
|
|
shell-escape = "0.1.5"
|
2022-01-03 19:37:03 +01:00
|
|
|
sys-info = "0.9.0"
|
2020-12-16 05:21:26 +01:00
|
|
|
snafu = "0.6.10"
|
|
|
|
tempfile = "3.1.0"
|
2022-01-23 02:50:53 +01:00
|
|
|
tokio-stream = "0.1.8"
|
2021-10-23 13:22:35 +02:00
|
|
|
users = "0.11.0"
|
2021-11-21 08:34:52 +01:00
|
|
|
uuid = { version = "0.8.2", features = ["serde", "v4"] }
|
2022-01-03 19:37:03 +01:00
|
|
|
validator = { version = "0.14", features = ["derive"] }
|
2021-02-10 19:29:17 +01:00
|
|
|
|
2022-01-05 23:01:05 +01:00
|
|
|
[dev-dependencies]
|
|
|
|
tokio-test = "0.4.0"
|
|
|
|
|
2021-02-10 19:29:17 +01:00
|
|
|
[dependencies.tokio]
|
|
|
|
version = "1.0.0"
|
|
|
|
features = [
|
|
|
|
"fs",
|
|
|
|
"io-util",
|
|
|
|
"macros",
|
|
|
|
"process",
|
|
|
|
"rt",
|
|
|
|
"rt-multi-thread",
|
|
|
|
"sync",
|
|
|
|
]
|