From 56ed532038b0464a53ecb66c7512a271317d8855 Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Mon, 5 Aug 2024 07:59:34 -0500 Subject: [PATCH] update to latest reedline commit 919292e (#13540) # Description This PR updates nushell to the latest reedline commit which has some vi keyboard mode changes. # User-Facing Changes # Tests + Formatting # After Submitting --- Cargo.lock | 3 +-- Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f4495d6bfa..89e5127356 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5006,8 +5006,7 @@ dependencies = [ [[package]] name = "reedline" version = "0.33.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f8c676a3f3814a23c6a0fc9dff6b6c35b2e04df8134aae6f3929cc34de21a53" +source = "git+https://github.com/nushell/reedline?branch=main#919292e40fd417e3da882692021961b444150c59" dependencies = [ "arboard", "chrono", diff --git a/Cargo.toml b/Cargo.toml index e60acd2548..ce62fa745e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -305,8 +305,8 @@ 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" } +[patch.crates-io] +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`