From 4ab2c3238acdc8f4ef1987522b5edb37a78f83e8 Mon Sep 17 00:00:00 2001 From: Ian Manske Date: Tue, 28 May 2024 18:53:51 +0000 Subject: [PATCH] Disable reedline patch for 0.94.0 (#12986) Disable crates.io git patch for reedline for 0.94.0 release. --- Cargo.lock | 3 ++- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6e9216d447..b8777234ad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4820,7 +4820,8 @@ dependencies = [ [[package]] name = "reedline" version = "0.32.0" -source = "git+https://github.com/nushell/reedline?branch=main#a580ea56d4e5a889468b2969d2a1534379504ab6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "abf59e4c97b5049ba96b052cdb652368305a2eddcbce9bf1c16f9d003139eeea" dependencies = [ "arboard", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 665fd21747..6cac862ae1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -298,7 +298,7 @@ bench = false # To use a development version of a dependency please use a global override here # changing versions in each sub-crate of the workspace is tedious [patch.crates-io] -reedline = { git = "https://github.com/nushell/reedline", branch = "main" } +# reedline = { git = "https://github.com/nushell/reedline", branch = "main" } # nu-ansi-term = {git = "https://github.com/nushell/nu-ansi-term.git", branch = "main"} # Run all benchmarks with `cargo bench`