From ac8cdeaa4d812319c852f6e44c29f07e9992ed6e Mon Sep 17 00:00:00 2001 From: amtoine Date: Sun, 28 Apr 2024 13:17:58 +0200 Subject: [PATCH] remove `console` from the dependencies it's not used anywhere. --- Cargo.lock | 20 -------------------- Cargo.toml | 1 - 2 files changed, 21 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 675a39d..cb9a71b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -414,19 +414,6 @@ dependencies = [ "crossbeam-utils", ] -[[package]] -name = "console" -version = "0.15.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" -dependencies = [ - "encode_unicode", - "lazy_static", - "libc", - "unicode-width", - "windows-sys 0.52.0", -] - [[package]] name = "core-foundation-sys" version = "0.8.6" @@ -520,12 +507,6 @@ version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2" -[[package]] -name = "encode_unicode" -version = "0.3.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" - [[package]] name = "equivalent" version = "1.0.1" @@ -1154,7 +1135,6 @@ name = "nu_plugin_explore" version = "0.92.3-2595f31541554c6d8602ebebc9dffbc4dd29dd89" dependencies = [ "anyhow", - "console", "crossterm", "nu-plugin", "nu-protocol", diff --git a/Cargo.toml b/Cargo.toml index 9e0c572..5383eba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,6 @@ name = "nu_plugin_explore" [dependencies] anyhow = "1.0.73" -console = "0.15.7" crossterm = "0.27.0" nuon = { git = "https://github.com/nushell/nushell", rev = "2595f31541554c6d8602ebebc9dffbc4dd29dd89", package = "nuon" } nu-plugin = { git = "https://github.com/nushell/nushell", rev = "2595f31541554c6d8602ebebc9dffbc4dd29dd89", package = "nu-plugin" }