eh/Cargo.toml
NotAShelf ab35745f53
Some checks failed
Rust / build (push) Has been cancelled
chore: tag 0.1.7; bump dependencies
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I6f036ef250a3e9a12a09215af09c72776a6a6964
2026-03-20 14:47:50 +03:00

34 lines
885 B
TOML

[workspace]
default-members = [ "eh" ]
members = [ "eh", "crates/*" ]
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.91.0"
version = "0.1.7"
[workspace.dependencies]
clap = { default-features = false, features = [ "std", "help", "derive" ], version = "4.6.0" }
clap_complete = "4.6.0"
dialoguer = { default-features = false, version = "0.12.0" }
regex = "1.12.3"
serde_json = "1.0.149"
tempfile = "3.27.0"
thiserror = "2.0.18"
walkdir = "2.5.0"
yansi = "1.0.1"
eh = { path = "./eh" }
eh-log = { path = "./crates/eh-log" }
[profile.release]
codegen-units = 1
lto = true
opt-level = "z"
panic = "abort"
strip = true