diff --git a/.gitignore b/.gitignore index ea8c4bf..1a14b40 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /target +/releases \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 264d9ef..25a35b8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -153,46 +153,6 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" -[[package]] -name = "clap" -version = "4.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a13b88d2c62ff462f88e4a121f17a82c1af05693a2f192b5c38d14de73c19f6" -dependencies = [ - "clap_builder", - "clap_derive", -] - -[[package]] -name = "clap_builder" -version = "4.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2bb9faaa7c2ef94b2743a21f5a29e6f0010dff4caa69ac8e9d6cf8b6fa74da08" -dependencies = [ - "anstream", - "anstyle", - "clap_lex", - "strsim", -] - -[[package]] -name = "clap_derive" -version = "4.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0862016ff20d69b84ef8247369fabf5c008a7417002411897d40ee1f4532b873" -dependencies = [ - "heck", - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "clap_lex" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd7cc57abe963c6d3b9d8be5b06ba7c8957a930305ca90304f24ef040aa6f961" - [[package]] name = "colorchoice" version = "1.0.0" @@ -405,12 +365,6 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" -[[package]] -name = "heck" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" - [[package]] name = "hermit-abi" version = "0.3.2" @@ -619,7 +573,6 @@ name = "lyrics" version = "0.1.0" dependencies = [ "bunt", - "clap", "human-panic", "inquire", "reqwest", @@ -1059,12 +1012,6 @@ dependencies = [ "windows-sys", ] -[[package]] -name = "strsim" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" - [[package]] name = "syn" version = "2.0.31" diff --git a/Cargo.toml b/Cargo.toml index 0bc0790..84c8bb0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,6 @@ repository = "https://github.com/newtoallofthis123/lyrics_cli" [dependencies] inquire = {version = "0.6"} -clap = {version = "4.4", features = ["derive"]} bunt = {version = "0.2"} reqwest = {version = "0.11"} serde = {version = "1", features = ["derive"]}