diff --git a/Cargo.lock b/Cargo.lock index 520f0667f..fc6e3d723 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4078,8 +4078,9 @@ dependencies = [ [[package]] name = "reedline" -version = "0.10.0" -source = "git+https://github.com/nushell/reedline?branch=main#fe889ae5c4b4fa7492cf6f138ccd4274b0f682cf" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5559b5ab4817b0da0c6fc6814edfae537209e01d955a2f3e7595606e3d039691" dependencies = [ "chrono", "crossterm 0.24.0", diff --git a/Cargo.toml b/Cargo.toml index 35a65e702..b61d93ba0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -53,7 +53,7 @@ nu-system = { path = "./crates/nu-system", version = "0.67.1" } nu-table = { path = "./crates/nu-table", version = "0.67.1" } nu-term-grid = { path = "./crates/nu-term-grid", version = "0.67.1" } nu-utils = { path = "./crates/nu-utils", version = "0.67.1" } -reedline = { version = "0.10.0", features = ["bashisms", "sqlite"]} +reedline = { version = "0.11.0", features = ["bashisms", "sqlite"]} rayon = "1.5.1" is_executable = "1.0.1" simplelog = "0.12.0" @@ -122,5 +122,3 @@ debug = false 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 71e1234e4..6c5a884b0 100644 --- a/crates/nu-cli/Cargo.toml +++ b/crates/nu-cli/Cargo.toml @@ -20,7 +20,7 @@ nu-protocol = { path = "../nu-protocol", version = "0.67.1" } nu-utils = { path = "../nu-utils", version = "0.67.1" } nu-ansi-term = "0.46.0" nu-color-config = { path = "../nu-color-config", version = "0.67.1" } -reedline = { version = "0.10.0", features = ["bashisms", "sqlite"]} +reedline = { version = "0.11.0", features = ["bashisms", "sqlite"]} atty = "0.2.14" chrono = "0.4.21" diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml index 6c21dfbc6..531f49a66 100644 --- a/crates/nu-command/Cargo.toml +++ b/crates/nu-command/Cargo.toml @@ -87,7 +87,7 @@ unicode-segmentation = "1.8.0" url = "2.2.1" uuid = { version = "1.1.2", features = ["v4"] } which = { version = "4.3.0", optional = true } -reedline = { version = "0.10.0", features = ["bashisms", "sqlite"]} +reedline = { version = "0.11.0", features = ["bashisms", "sqlite"]} wax = { version = "0.5.0", features = ["diagnostics"] } rusqlite = { version = "0.28.0", features = ["bundled"], optional = true } sqlparser = { version = "0.16.0", features = ["serde"], optional = true }