deps/clap: disable default features...
- color - moved to a feature . To enable install vnetod with - suggestions
This commit is contained in:
parent
570a39734b
commit
c0b010e279
2 changed files with 5 additions and 11 deletions
9
Cargo.lock
generated
9
Cargo.lock
generated
|
@ -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",
|
||||
]
|
||||
|
|
|
@ -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"]
|
||||
|
|
Loading…
Reference in a new issue