diff --git a/Cargo.lock b/Cargo.lock index 8d61244..b12b9ec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -37,7 +37,6 @@ dependencies = [ "clap_lex", "indexmap", "once_cell", - "strsim", "termcolor", "textwrap", ] @@ -155,12 +154,6 @@ dependencies = [ "proc-macro2", ] -[[package]] -name = "strsim" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" - [[package]] name = "syn" version = "1.0.98" @@ -201,7 +194,7 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "vnetod" -version = "0.2.2" +version = "0.3.2" dependencies = [ "clap", ] diff --git a/Cargo.toml b/Cargo.toml index ee666f1..3eba37a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "vnetod" -description = "Dotenv section switcher" -version = "0.3.1" +description = "Are you still switching sections in your dotenv file manually? Try this dotenv section switcher" +version = "0.3.2" edition = "2021" license = "GPL-3.0+" homepage = "https://github.com/pleshevskiy/vnetod/discussions" @@ -12,6 +12,7 @@ categories = ["command-line-interface", "config", "development-tools"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -clap = { version = "3.2.15", features = ["derive"] } +clap = { version = "3.2.15", default-features = false, features = ["std", "derive"] } [features] +color = ["clap/color"]