diff --git a/Cargo.lock b/Cargo.lock index dd5c19e..e55a104 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -57,9 +57,9 @@ dependencies = [ [[package]] name = "clap_complete" -version = "4.6.2" +version = "4.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ff7a1dccbdd8b078c2bdebff47e404615151534d5043da397ec50286816f9cb" +checksum = "660c0520455b1013b9bcb0393d5f643d7e4454fb69c915b8d6d2aa0e9a45acc3" dependencies = [ "clap", ] @@ -109,6 +109,7 @@ name = "eh" version = "0.2.0" dependencies = [ "clap", + "clap_complete", "dialoguer", "eh-log", "regex", diff --git a/Cargo.toml b/Cargo.toml index 931f336..43502a8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,6 @@ members = [ "eh", "crates/*" ] resolver = "3" [workspace.package] -authors = [ "NotAShelf " ] description = "Ergonomic Nix CLI helper" edition = "2024" license = "MPL-2.0" @@ -13,11 +12,11 @@ rust-version = "1.94.0" version = "0.2.0" [workspace.dependencies] -clap = { default-features = false, features = [ "std", "help", "derive" ], version = "4.6.0" } -clap_complete = "4.6.0" +clap = { default-features = false, features = [ "std", "help", "derive" ], version = "4.6.1" } +clap_complete = "4.6.3" dialoguer = { default-features = false, version = "0.12.0" } regex = "1.12.3" -serde = { features = [ "derive" ], version = "1.0.149" } +serde = { features = [ "derive" ], version = "1.0.228" } serde_json = "1.0.149" tempfile = "3.27.0" textwrap = "0.16.2" @@ -26,8 +25,8 @@ toml = { default-features = false, features = [ "parse", "serde" ], ver walkdir = "2.5.0" yansi = "1.0.1" -eh = { path = "./eh" } -eh-log = { path = "./crates/eh-log" } +eh = { path = "./eh", version = "0.2.0" } +eh-log = { path = "./crates/eh-log", version = "0.2.0" } [profile.release] codegen-units = 1 diff --git a/crates/eh-log/Cargo.toml b/crates/eh-log/Cargo.toml index e3ef1f4..17b2a02 100644 --- a/crates/eh-log/Cargo.toml +++ b/crates/eh-log/Cargo.toml @@ -3,8 +3,8 @@ name = "eh-log" description = "Styled logging for eh" version.workspace = true edition.workspace = true -authors.workspace = true rust-version.workspace = true +publish = false [dependencies] yansi.workspace = true diff --git a/crates/xtask/Cargo.toml b/crates/xtask/Cargo.toml index 4343ed0..4a83c82 100644 --- a/crates/xtask/Cargo.toml +++ b/crates/xtask/Cargo.toml @@ -3,7 +3,6 @@ name = "xtask" description.workspace = true version.workspace = true edition.workspace = true -authors.workspace = true rust-version.workspace = true publish = false diff --git a/eh/Cargo.toml b/eh/Cargo.toml index f3f4e51..2223eaa 100644 --- a/eh/Cargo.toml +++ b/eh/Cargo.toml @@ -3,7 +3,6 @@ name = "eh" description.workspace = true version.workspace = true edition.workspace = true -authors.workspace = true rust-version.workspace = true [lib] @@ -11,15 +10,16 @@ crate-type = [ "lib" ] name = "eh" [dependencies] -clap.workspace = true -dialoguer.workspace = true -eh-log.workspace = true -regex.workspace = true -serde.workspace = true -serde_json.workspace = true -tempfile.workspace = true -textwrap.workspace = true -thiserror.workspace = true -toml.workspace = true -walkdir.workspace = true -yansi.workspace = true +clap.workspace = true +clap_complete.workspace = true +dialoguer.workspace = true +eh-log.workspace = true +regex.workspace = true +serde.workspace = true +serde_json.workspace = true +tempfile.workspace = true +textwrap.workspace = true +thiserror.workspace = true +toml.workspace = true +walkdir.workspace = true +yansi.workspace = true