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-10 16:57:59 +02:00
|
|
|
clap = { version = "4.3", features = ["derive"] }
|
|
|
|
clap_complete = "4.3"
|
2021-12-04 10:03:26 +01:00
|
|
|
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"
|
2020-12-20 00:07:29 +01:00
|
|
|
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"
|
2021-02-09 03:38:14 +01:00
|
|
|
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"
|
2021-02-12 22:55:44 +01:00
|
|
|
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
|
|
|
|
2022-01-05 23:01:05 +01:00
|
|
|
[dev-dependencies]
|
2023-05-15 07:05:08 +02:00
|
|
|
ntest = "0.9.0"
|
|
|
|
tokio-test = "0.4.2"
|
2022-01-05 23:01:05 +01:00
|
|
|
|
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",
|
2024-10-03 18:42:52 +02:00
|
|
|
"io-std",
|
2021-02-10 19:29:17 +01:00
|
|
|
"macros",
|
|
|
|
"process",
|
|
|
|
"rt",
|
|
|
|
"rt-multi-thread",
|
|
|
|
"sync",
|
|
|
|
]
|
2024-10-10 21:04:01 +02:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "colmena"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "colmena"
|
|
|
|
path = "src/lib.rs"
|