From 822007dbbbb4edb3761b0b9d83c5ab832ea4452a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrej=20Kol=C4=8Din?= Date: Fri, 23 Aug 2024 21:51:34 +0300 Subject: [PATCH] Remove unused `same-file` workspace dependency (#13678) A small no-op change. It was used in a two years old `mv` fix (848550771a, pre `uu_mv`). But now it's redundant. --- Cargo.lock | 1 - Cargo.toml | 1 - crates/nu-command/Cargo.toml | 1 - 3 files changed, 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3e818b221d..5ea776765f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3134,7 +3134,6 @@ dependencies = [ "roxmltree", "rstest", "rusqlite", - "same-file", "serde", "serde_json", "serde_urlencoded", diff --git a/Cargo.toml b/Cargo.toml index ebb26171c8..074cd764d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -148,7 +148,6 @@ roxmltree = "0.19" rstest = { version = "0.18", default-features = false } rusqlite = "0.31" rust-embed = "8.5.0" -same-file = "1.0" serde = { version = "1.0", default-features = false } serde_json = "1.0" serde_urlencoded = "0.7.1" diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml index 3c455eabcf..20e5d607ea 100644 --- a/crates/nu-command/Cargo.toml +++ b/crates/nu-command/Cargo.toml @@ -77,7 +77,6 @@ regex = { workspace = true } roxmltree = { workspace = true } rusqlite = { workspace = true, features = ["bundled", "backup", "chrono"], optional = true } rmp = { workspace = true } -same-file = { workspace = true } serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true, features = ["preserve_order"] } serde_urlencoded = { workspace = true }