eh/Cargo.toml
NotAShelf 185403436b
Some checks failed
Rust / build (push) Has been cancelled
eh: replaced the manual directory traversal with walkdir
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I537cc9b6ab7110c47f9884f1793b07596a6a6964
2025-11-13 01:13:13 +03:00

29 lines
749 B
TOML

[workspace]
members = [ "eh", "xtask" ]
resolver = "3"
[workspace.package]
authors = [ "NotAShelf <raf@notashelf.dev>" ]
description = "Ergonomic Nix CLI helper"
edition = "2024"
license = "MPL-2.0"
readme = true
rust-version = "1.89"
version = "0.1.2"
[workspace.dependencies]
clap = { default-features = false, features = [ "std", "help", "derive" ], version = "4.5.51" }
clap_complete = "4.5.60"
regex = "1.12.2"
thiserror = "2.0.17"
tracing = "0.1.41"
tracing-subscriber = "0.3.20"
walkdir = "2.5.0"
yansi = "1.0.1"
[profile.release]
codegen-units = 1
lto = true
opt-level = "z"
panic = "abort"
strip = true