colmena/Cargo.toml

54 lines
1 KiB
TOML
Raw Normal View History

2020-12-16 05:21:26 +01:00
[package]
name = "colmena"
2022-04-27 23:10:58 +02:00
version = "0.4.0-pre"
2020-12-16 05:21:26 +01:00
authors = ["Zhaofeng Li <hello@zhaofeng.li>"]
2022-07-02 01:31:13 +02:00
edition = "2021"
2020-12-16 05:21:26 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
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"
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"
hostname = "0.3.1"
indicatif = "0.17.0-rc.1"
itertools = "0.10.1"
2021-11-18 07:21:00 +01:00
lazy_static = "1.4.0"
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"
regex = "1"
2020-12-16 05:21:26 +01:00
serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0"
shell-escape = "0.1.5"
2022-01-03 19:37:03 +01:00
sys-info = "0.9.0"
2022-01-25 23:22:26 +01:00
snafu = "0.7.0"
2020-12-16 05:21:26 +01:00
tempfile = "3.1.0"
tokio-stream = "0.1.8"
2022-05-22 11:15:33 +02:00
uuid = { version = "1.0.0", features = ["serde", "v4"] }
2022-08-17 04:15:43 +02:00
validator = { version = "0.16.0", features = ["derive"] }
2021-02-10 19:29:17 +01:00
[dev-dependencies]
2022-06-04 08:51:32 +02:00
ntest = "0.8.0"
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",
]