From a80273bd7b47b57ccee836c9a5ab924337765300 Mon Sep 17 00:00:00 2001 From: Bruce Weirdan Date: Thu, 15 Aug 2024 19:25:50 +0200 Subject: [PATCH] Drop unused `fs_extra` and `hamcrest2` dependencies (#13628) Fixes nushell/nushell#7995 # Description This dependency is no longer used by nushell itself. # User-Facing Changes None. # Tests + Formatting Pased. # After Submitting None. --- Cargo.lock | 1 - Cargo.toml | 2 -- crates/nu-command/Cargo.toml | 1 - 3 files changed, 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b3fba6ee32..dcb6e609a5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3075,7 +3075,6 @@ dependencies = [ "fancy-regex", "filesize", "filetime", - "fs_extra", "human-date-parser", "indexmap", "indicatif", diff --git a/Cargo.toml b/Cargo.toml index 9dd7e88236..8b1a971b76 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -90,9 +90,7 @@ encoding_rs = "0.8" fancy-regex = "0.13" filesize = "0.2" filetime = "0.2" -fs_extra = "1.3" fuzzy-matcher = "0.3" -hamcrest2 = "0.3" heck = "0.5.0" human-date-parser = "0.1.1" indexmap = "2.4" diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml index 475f595ef5..ac9bada555 100644 --- a/crates/nu-command/Cargo.toml +++ b/crates/nu-command/Cargo.toml @@ -50,7 +50,6 @@ encoding_rs = { workspace = true } fancy-regex = { workspace = true } filesize = { workspace = true } filetime = { workspace = true } -fs_extra = { workspace = true } human-date-parser = { workspace = true } indexmap = { workspace = true } indicatif = { workspace = true }