-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
30 lines (25 loc) · 853 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "rly"
description = "Run shell commands concurrently with ease. Currently only a CLI tool."
readme = "README.md"
authors = ["Lucas Jenß <crates-io@x3ro.de>"]
license = "Apache-2.0"
version = "0.2.0"
edition = "2021"
repository = "https://github.com/x3ro/rly"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.41.0", features = ["full"] }
clap = { version = "4.0.32", features = ["derive", "wrap_help"] }
anyhow = "1.0.93"
serde = { version = "1.0.185" }
serde_derive = "1.0.214"
pretty_assertions = "1.4.1"
chrono = "0.4.38"
colored = "2.0.0"
[target.'cfg(not(target_os = "windows"))'.dependencies]
nix = { version = "0.29", features=["process", "signal"] }
log = "0.4.22"
pretty_env_logger = "0.4.0"
[dev-dependencies]
edit-distance = "2.1.3"