colmena/Cargo.toml

53 lines
1.1 KiB
TOML
Raw Normal View History

2020-12-15 20:21:26 -08:00
[package]
name = "colmena"
2023-05-14 23:05:08 -06:00
version = "0.5.0-pre"
2020-12-15 20:21:26 -08:00
authors = ["Zhaofeng Li <hello@zhaofeng.li>"]
2022-07-01 16:31:13 -07:00
edition = "2021"
2020-12-15 20:21:26 -08:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-05-14 23:05:08 -06:00
async-stream = "0.3.5"
async-trait = "0.1.68"
2021-02-09 19:28:45 -08:00
atty = "0.2"
clap = { version = "4.3", features = ["derive"] }
clap_complete = "4.3"
clicolors-control = "1"
2023-05-14 23:05:08 -06: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-14 23:05:08 -06:00
indicatif = "0.17.3"
2023-10-18 15:41:54 -06:00
itertools = "0.11.0"
2023-05-14 23:05:08 -06:00
libc = "0.2.144"
log = "0.4.17"
quit = "2.0.0"
regex = "1"
2023-05-14 23:05:08 -06:00
serde = { version = "1.0.163", features = ["derive"] }
2020-12-15 20:21:26 -08:00
serde_json = "1.0"
shell-escape = "0.1.5"
2023-05-14 23:05:08 -06:00
snafu = { version = "0.7.4", features = ["backtrace", "backtraces-impl-backtrace-crate"] }
2023-10-18 15:41:54 -06:00
sys-info = "0.9.1"
2023-05-14 23:05:08 -06:00
tempfile = "3.5.0"
tokio-stream = "0.1.14"
uuid = { version = "1.3.2", features = ["serde", "v4"] }
2022-08-16 20:15:43 -06:00
validator = { version = "0.16.0", features = ["derive"] }
2021-02-10 10:29:17 -08:00
[dev-dependencies]
2023-05-14 23:05:08 -06:00
ntest = "0.9.0"
tokio-test = "0.4.2"
2021-02-10 10:29:17 -08:00
[dependencies.tokio]
2023-05-14 23:05:08 -06:00
version = "1.28.1"
2021-02-10 10:29:17 -08:00
features = [
"fs",
"io-util",
"macros",
"process",
"rt",
"rt-multi-thread",
"sync",
]