From 3e758e899f8e96a1e4e1b52a6c19e3dd08c7705e Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Wed, 25 Jun 2025 16:49:26 -0500 Subject: [PATCH] update nushell to latest reedline e4221b9 (#16044) # Description This PR just updates nushell to the latest reedline commit e4221b9 so we can dogfood the most recent changes. --- Cargo.lock | 3 +-- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5acd80f952..a1bac0e30a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5941,8 +5941,7 @@ dependencies = [ [[package]] name = "reedline" version = "0.40.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5cdfab7494d13ebfb6ce64828648518205d3ce8541ef1f94a27887f29d2d50b" +source = "git+https://github.com/nushell/reedline?branch=main#e4221b954ccc04940f3ed505ed4984d92fbe1f4c" dependencies = [ "arboard", "chrono", diff --git a/Cargo.toml b/Cargo.toml index f8d188641f..effa4086b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -334,7 +334,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`