From 00b3f9cd36486565a76a61668fbe1b755e5c0c0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Gonz=C3=A1lez?= Date: Tue, 17 Oct 2023 11:13:18 +0100 Subject: [PATCH] Remove unused atty dependency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tomás González --- Cargo.lock | 23 +---------------------- Cargo.toml | 1 - 2 files changed, 1 insertion(+), 23 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6d8281a..40e03a9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -56,17 +56,6 @@ dependencies = [ "syn 1.0.109", ] -[[package]] -name = "atty" -version = "0.2.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" -dependencies = [ - "hermit-abi 0.1.19", - "libc", - "winapi", -] - [[package]] name = "autocfg" version = "1.1.0" @@ -457,15 +446,6 @@ dependencies = [ "unicode-segmentation", ] -[[package]] -name = "hermit-abi" -version = "0.1.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" -dependencies = [ - "libc", -] - [[package]] name = "hermit-abi" version = "0.3.3" @@ -503,7 +483,7 @@ version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" dependencies = [ - "hermit-abi 0.3.3", + "hermit-abi", "rustix", "windows-sys", ] @@ -840,7 +820,6 @@ dependencies = [ name = "parsec-tool" version = "0.6.0" dependencies = [ - "atty", "base64 0.13.1", "env_logger", "log", diff --git a/Cargo.toml b/Cargo.toml index 6f4d8df..197be66 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,6 @@ documentation = "https://docs.rs/crate/parsec-tool" rust-version = "1.66.0" [dependencies] -atty = "0.2.14" parsec-client = "0.16.0" structopt = { version = "0.3.17", default-features = false } thiserror = "1.0.20"