-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.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ß <[email protected]>"]
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.42.0", features = ["full"] }
clap = { version = "4.5.23", features = ["derive", "wrap_help"] }
anyhow = "1.0.95"
serde = { version = "1.0.217" }
serde_derive = "1.0.214"
pretty_assertions = "1.4.1"
chrono = "0.4.39"
colored = "2.2.0"
[target.'cfg(not(target_os = "windows"))'.dependencies]
nix = { version = "0.29", features=["process", "signal"] }
log = "0.4.22"
pretty_env_logger = "0.5.0"
[dev-dependencies]
edit-distance = "2.1.3"