From 76ee00e013b28bfa40efa3b3595ecc687eb6f352 Mon Sep 17 00:00:00 2001 From: Stefan Holderbach Date: Sun, 15 Oct 2023 21:19:34 +0200 Subject: [PATCH] Pin `uu_cp` to the `0.0.22` release. (#10725) --- Cargo.lock | 20 ++++++++++++-------- Cargo.toml | 2 +- crates/nu-command/Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9595b5306..42ec558e1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5603,8 +5603,9 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uu_cp" -version = "0.0.21" -source = "git+https://github.com/uutils/coreutils.git?branch=main#f3f82c14af6789ec7238a40ea120462e574f4973" +version = "0.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ffde008c74fab21c82e4711086dfffbfd3bd98e47cb662c77adb29ea8912d0e" dependencies = [ "clap", "filetime", @@ -5618,8 +5619,9 @@ dependencies = [ [[package]] name = "uucore" -version = "0.0.21" -source = "git+https://github.com/uutils/coreutils.git?branch=main#f3f82c14af6789ec7238a40ea120462e574f4973" +version = "0.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "342b2c36d24d20656e70f08af99b7f6944983dc287f291d65db982e99d618d11" dependencies = [ "clap", "dunce", @@ -5637,8 +5639,9 @@ dependencies = [ [[package]] name = "uucore_procs" -version = "0.0.21" -source = "git+https://github.com/uutils/coreutils.git?branch=main#f3f82c14af6789ec7238a40ea120462e574f4973" +version = "0.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c1ef7f8253186cf48f4aeaff93acb3ef0d8e3da36b96265b76201af2f8beab4" dependencies = [ "proc-macro2", "quote", @@ -5647,8 +5650,9 @@ dependencies = [ [[package]] name = "uuhelp_parser" -version = "0.0.21" -source = "git+https://github.com/uutils/coreutils.git?branch=main#f3f82c14af6789ec7238a40ea120462e574f4973" +version = "0.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6de61731e36d52d3babb63e2dce8fe648e2644e9ddfe2621e0eea699022051a6" [[package]] name = "uuid" diff --git a/Cargo.toml b/Cargo.toml index fcd2355ab..5d23ed719 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -166,7 +166,7 @@ bench = false [patch.crates-io] reedline = { git = "https://github.com/nushell/reedline.git", branch = "main" } # nu-ansi-term = {git = "https://github.com/nushell/nu-ansi-term.git", branch = "main"} -uu_cp = { git = "https://github.com/uutils/coreutils.git", branch = "main" } +# uu_cp = { git = "https://github.com/uutils/coreutils.git", branch = "main" } # Criterion benchmarking setup # Run all benchmarks with `cargo bench` diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml index 58d30dbac..220502f35 100644 --- a/crates/nu-command/Cargo.toml +++ b/crates/nu-command/Cargo.toml @@ -87,7 +87,7 @@ toml = "0.8" unicode-segmentation = "1.10" ureq = { version = "2.8", default-features = false, features = ["charset", "gzip", "json", "native-tls"] } url = "2.2" -uu_cp = "0.0.21" +uu_cp = "0.0.22" uuid = { version = "1.3", features = ["v4"] } wax = { version = "0.6" } which = { version = "4.4", optional = true }