eh/Cargo.toml
NotAShelf 327d03b066
Some checks failed
Rust / build (push) Has been cancelled
chore: tag 0.1.6
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I6a97ffc982bfd9915e92103f895b42466a6a6964
2026-03-03 23:49:39 +03:00

34 lines
887 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.6"
[workspace.dependencies]
clap = { default-features = false, features = [ "std", "help", "derive" ], version = "4.5.56" }
clap_complete = "4.5.65"
dialoguer = { default-features = false, version = "0.12.0" }
regex = "1.12.2"
serde_json = "1.0.149"
tempfile = "3.24.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