colmena/Cargo.toml

54 lines
1.2 KiB
TOML
Raw Normal View History

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]
ansi-to-html = "0.1.0"
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"
2020-12-16 05:21:26 +01:00
console = "0.13.0"
2021-11-18 22:15:20 +01:00
const_format = "0.2.22"
env_logger = "0.8.2"
2020-12-16 05:21:26 +01:00
futures = "0.3.8"
glob = "0.3.0"
hostname = "0.3.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"
2020-12-16 05:21:26 +01:00
snafu = "0.6.10"
tempfile = "3.1.0"
2021-02-11 20:55:45 +01:00
tokio-test = "0.4.0"
users = "0.11.0"
uuid = { version = "0.8.2", features = ["serde", "v4"] }
validator = { version = "0.12", features = ["derive"] }
2021-02-10 19:29:17 +01:00
# For https://github.com/mitsuhiko/indicatif/pull/325
# Change back to 0.17.0-beta.2 when it releases
indicatif = { git = "https://github.com/mitsuhiko/indicatif", rev = "5a38ab70b75be5fc9f4a00c4d9d58adabb817398" }
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",
]