From 454d1a995cea6027aa3aa958a1d3ca0f45ab1ba3 Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Mon, 6 Mar 2023 15:51:53 -0600 Subject: [PATCH] point nushell at latest reedline and nu-ansi-term main (#8342) --- Cargo.lock | 15 +++------------ Cargo.toml | 3 ++- 2 files changed, 5 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a1cb2cb245..01ad3ed99a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2643,11 +2643,9 @@ dependencies = [ [[package]] name = "nu-ansi-term" version = "0.46.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" +source = "git+https://github.com/nushell/nu-ansi-term.git?branch=main#555d4e1726b8ae8be0e78b59384cbe172029d922" dependencies = [ - "overload", - "winapi", + "windows-sys 0.45.0", ] [[package]] @@ -3342,12 +3340,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "overload" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" - [[package]] name = "owo-colors" version = "3.5.0" @@ -4234,8 +4226,7 @@ dependencies = [ [[package]] name = "reedline" version = "0.16.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a02723e44c03f5ef62ad35665a43cfa1df3b78cbb75e31ea9ddc6d2f0d9b4658" +source = "git+https://github.com/nushell/reedline.git?branch=main#ac1d9549a3df0743c96162a632e5f73d74f12abc" dependencies = [ "chrono", "crossterm 0.24.0", diff --git a/Cargo.toml b/Cargo.toml index 7c0e258a2b..b3c3e39f49 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -157,7 +157,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.git", branch = "main" } +reedline = { git = "https://github.com/nushell/reedline.git", branch = "main" } +nu-ansi-term = {git = "https://github.com/nushell/nu-ansi-term.git", branch = "main"} # Criterion benchmarking setup # Run all benchmarks with `cargo bench`