From 89acbda8772522bafb0c7e5ca072c946e73bb3d3 Mon Sep 17 00:00:00 2001 From: Stefan Holderbach Date: Tue, 5 Jul 2022 11:25:35 +0200 Subject: [PATCH] Pin reedline to new 0.8.0 release (#5954) For the nushell 0.65.0 release https://github.com/nushell/reedline/releases/tag/v0.8.0 --- Cargo.lock | 5 +++-- Cargo.toml | 5 +---- crates/nu-cli/Cargo.toml | 2 +- crates/nu-command/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f0af1abfa7..1860e2f4a1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3828,8 +3828,9 @@ dependencies = [ [[package]] name = "reedline" -version = "0.7.0" -source = "git+https://github.com/nushell/reedline?branch=main#680bc7a162b3536dd2db7353b4714bf540f4ae62" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d064ec92a21deb048c440b6461ccf0d0babdb5f2160ea9dfac451bc7b4b556e2" dependencies = [ "chrono", "crossterm", diff --git a/Cargo.toml b/Cargo.toml index 34617102fa..d472e820e7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,7 +52,7 @@ nu-system = { path = "./crates/nu-system", version = "0.65.0" } nu-table = { path = "./crates/nu-table", version = "0.65.0" } nu-term-grid = { path = "./crates/nu-term-grid", version = "0.65.0" } nu-utils = { path = "./crates/nu-utils", version = "0.65.0" } -reedline = { version = "0.7.0", features = ["bashisms", "sqlite"]} +reedline = { version = "0.8.0", features = ["bashisms", "sqlite"]} pretty_env_logger = "0.4.0" rayon = "1.5.1" is_executable = "1.0.1" @@ -119,6 +119,3 @@ debug = false [[bin]] name = "nu" path = "src/main.rs" - -[patch.crates-io] -reedline = { git = "https://github.com/nushell/reedline", branch = "main"} diff --git a/crates/nu-cli/Cargo.toml b/crates/nu-cli/Cargo.toml index aaf667974f..6a73f09d61 100644 --- a/crates/nu-cli/Cargo.toml +++ b/crates/nu-cli/Cargo.toml @@ -18,7 +18,7 @@ nu-protocol = { path = "../nu-protocol", version = "0.65.0" } nu-utils = { path = "../nu-utils", version = "0.65.0" } nu-ansi-term = "0.46.0" nu-color-config = { path = "../nu-color-config", version = "0.65.0" } -reedline = { version = "0.7.0", features = ["bashisms", "sqlite"]} +reedline = { version = "0.8.0", features = ["bashisms", "sqlite"]} crossterm = "0.23.0" miette = { version = "5.1.0", features = ["fancy"] } thiserror = "1.0.31" diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml index 408633f324..1c2522e8e6 100644 --- a/crates/nu-command/Cargo.toml +++ b/crates/nu-command/Cargo.toml @@ -84,7 +84,7 @@ unicode-segmentation = "1.8.0" url = "2.2.1" uuid = { version = "0.8.2", features = ["v4"] } which = { version = "4.2.2", optional = true } -reedline = { version = "0.7.0", features = ["bashisms", "sqlite"]} +reedline = { version = "0.8.0", features = ["bashisms", "sqlite"]} wax = { version = "0.4.0", features = ["diagnostics"] } rusqlite = { version = "0.27.0", features = ["bundled"], optional = true } sqlparser = { version = "0.16.0", features = ["serde"], optional = true }