diff --git a/Cargo.lock b/Cargo.lock index 61e6f1b..7b3cb53 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -22,15 +22,6 @@ dependencies = [ "memchr", ] -[[package]] -name = "ansi_term" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" -dependencies = [ - "winapi", -] - [[package]] name = "anyhow" version = "1.0.66" @@ -168,21 +159,6 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" -[[package]] -name = "clap" -version = "2.34.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" -dependencies = [ - "ansi_term", - "atty", - "bitflags", - "strsim 0.8.0", - "textwrap 0.11.0", - "unicode-width", - "vec_map", -] - [[package]] name = "clap" version = "3.2.23" @@ -195,9 +171,9 @@ dependencies = [ "clap_lex", "indexmap", "once_cell", - "strsim 0.10.0", + "strsim", "termcolor", - "textwrap 0.16.0", + "textwrap", ] [[package]] @@ -404,7 +380,7 @@ dependencies = [ "bincode", "cairo-rs", "cairo-sys-rs", - "clap 3.2.23", + "clap", "codespan-reporting", "derive_more", "eww_shared_util", @@ -767,7 +743,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bc5bedc3dbd71dcdd41900e1f58e4d431fa69dd67c04ae1f86ae1a0339edd849" dependencies = [ "beef", - "clap 2.34.0", "codemap", "indexmap", "lasso", @@ -776,7 +751,6 @@ dependencies = [ "num-traits", "once_cell", "phf", - "rand", ] [[package]] @@ -1787,12 +1761,6 @@ dependencies = [ "precomputed-hash", ] -[[package]] -name = "strsim" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" - [[package]] name = "strsim" version = "0.10.0" @@ -1890,15 +1858,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "textwrap" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" -dependencies = [ - "unicode-width", -] - [[package]] name = "textwrap" version = "0.16.0" @@ -2017,12 +1976,6 @@ version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" -[[package]] -name = "vec_map" -version = "0.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" - [[package]] name = "version-compare" version = "0.1.0" diff --git a/crates/eww/Cargo.toml b/crates/eww/Cargo.toml index f6e047f..3749e1b 100644 --- a/crates/eww/Cargo.toml +++ b/crates/eww/Cargo.toml @@ -39,7 +39,7 @@ clap = {version = "3.2", features = ["derive"] } serde = {version = "1.0", features = ["derive"]} serde_json = "1.0" extend = "1" -grass = "0.11" +grass = {version = "0.11", default-features = false} itertools = "0.10" log = "0.4" pretty_env_logger = "0.4"