diff --git a/Cargo.lock b/Cargo.lock index 41a17e49ae..1e433dcbc9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4079,8 +4079,9 @@ dependencies = [ [[package]] name = "reedline" -version = "0.11.0" -source = "git+https://github.com/nushell/reedline?branch=main#3e92f97da21d62ded95ef9bd2c42386c8f701b99" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "311b256d0a325a92d685f1401fccf83341afba1a62d56bbfa3c98b87073db195" dependencies = [ "chrono", "crossterm 0.24.0", diff --git a/Cargo.toml b/Cargo.toml index 8caf33bdd2..04da56ae15 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -53,7 +53,7 @@ nu-system = { path = "./crates/nu-system", version = "0.69.0" } nu-table = { path = "./crates/nu-table", version = "0.69.0" } nu-term-grid = { path = "./crates/nu-term-grid", version = "0.69.0" } nu-utils = { path = "./crates/nu-utils", version = "0.69.0" } -reedline = { version = "0.11.0", features = ["bashisms", "sqlite"]} +reedline = { version = "0.12.0", features = ["bashisms", "sqlite"]} rayon = "1.5.1" is_executable = "1.0.1" @@ -122,6 +122,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-command/Cargo.toml b/crates/nu-command/Cargo.toml index a5baeed5e1..3a5314caaf 100644 --- a/crates/nu-command/Cargo.toml +++ b/crates/nu-command/Cargo.toml @@ -88,7 +88,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.11.0", features = ["bashisms", "sqlite"]} +reedline = { version = "0.12.0", features = ["bashisms", "sqlite"]} wax = { version = "0.5.0", features = ["diagnostics"] } rusqlite = { version = "0.28.0", features = ["bundled"], optional = true } sqlparser = { version = "0.23.0", features = ["serde"], optional = true }