-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (34 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
39 lines (34 loc) · 1.13 KB
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
31
32
33
34
35
36
37
38
39
[package]
name = "cmd_lib"
description = "Common rust commandline macros and utils, to write shell script like tasks easily"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/rust-shell-script/rust_cmd_lib"
repository = "https://github.com/rust-shell-script/rust_cmd_lib"
documentation = "https://docs.rs/cmd_lib"
keywords = ["shell", "script", "cli", "process", "pipe"]
categories = ["command-line-interface", "command-line-utilities"]
readme = "README.md"
version = "2.0.0"
authors = ["rust-shell-script <rust-shell-script@gmail.com>"]
edition = "2024"
rust-version = "1.88"
[workspace]
members = ["macros"]
[dependencies]
cmd_lib_macros = { version = "2.0.0", path = "./macros" }
log = "0.4.27"
faccess = "0.2.4"
os_pipe = "1.2.2"
env_logger = "0.11.8"
build-print = { version = "1.0", optional = true }
tracing = { version = "0.1.41", optional = true }
[dev-dependencies]
rayon = "1.11.0"
clap = { version = "4", features = ["derive"] }
byte-unit = "4.0.19"
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
[features]
build-print = ["dep:build-print"]
[[example]]
name = "tracing"
required-features = ["tracing"]