From 06b0bea77fc1a8f2dd39a88bcd9321319dd1e129 Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Mon, 12 Feb 2024 08:30:41 -0600 Subject: [PATCH] update to latest reedline (#11840) # Description There have been some PRs landed in reedline so it's good to test them and keep nushell up to date. # User-Facing Changes # Tests + Formatting # After Submitting --- Cargo.lock | 3 +-- Cargo.toml | 5 ++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f51840db71..799fe39e97 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4665,8 +4665,7 @@ dependencies = [ [[package]] name = "reedline" version = "0.29.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e01ebfbdb1a88963121d3c928c97be7f10fec7795bec8b918c8cda1db7c29e6" +source = "git+https://github.com/nushell/reedline?branch=main#02f551d42eeda2f277cb98416bb035529b2a91aa" dependencies = [ "arboard", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 185875e0a5..6c4b919b8e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -183,10 +183,9 @@ 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"} -# uu_cp = { git = "https://github.com/uutils/coreutils.git", branch = "main" } # Criterion benchmarking setup # Run all benchmarks with `cargo bench`