colmena/Cargo.toml

53 lines
1.1 KiB
TOML
Raw Normal View History

2020-12-16 05:21:26 +01:00
[package]
name = "colmena"
2023-05-15 07:05:08 +02:00
version = "0.5.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]
2023-05-15 07:05:08 +02:00
async-stream = "0.3.5"
async-trait = "0.1.68"
2021-02-10 04:28:45 +01:00
atty = "0.2"
2023-08-09 23:24:49 +02:00
clap = { version = "4.2.7", features = ["derive"] }
2023-05-15 07:05:08 +02:00
clap_complete = "4.2.3"
clicolors-control = "1"
2023-05-15 07:05:08 +02:00
console = "0.15.5"
const_format = "0.2.30"
env_logger = "0.10.0"
futures = "0.3.28"
glob = "0.3.1"
hostname = "0.3.1"
2023-05-15 07:05:08 +02:00
indicatif = "0.17.3"
2023-10-18 23:41:54 +02:00
itertools = "0.11.0"
2023-05-15 07:05:08 +02:00
libc = "0.2.144"
log = "0.4.17"
quit = "2.0.0"
regex = "1"
2023-05-15 07:05:08 +02:00
serde = { version = "1.0.163", features = ["derive"] }
2020-12-16 05:21:26 +01:00
serde_json = "1.0"
shell-escape = "0.1.5"
2023-05-15 07:05:08 +02:00
snafu = { version = "0.7.4", features = ["backtrace", "backtraces-impl-backtrace-crate"] }
2023-10-18 23:41:54 +02:00
sys-info = "0.9.1"
2023-05-15 07:05:08 +02:00
tempfile = "3.5.0"
tokio-stream = "0.1.14"
uuid = { version = "1.3.2", 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]
2023-05-15 07:05:08 +02:00
ntest = "0.9.0"
tokio-test = "0.4.2"
2021-02-10 19:29:17 +01:00
[dependencies.tokio]
2023-05-15 07:05:08 +02:00
version = "1.28.1"
2021-02-10 19:29:17 +01:00
features = [
"fs",
"io-util",
"macros",
"process",
"rt",
"rt-multi-thread",
"sync",
]