diff --git a/Cargo.lock b/Cargo.lock index 7109805500..3dec3b71b3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3715,8 +3715,9 @@ dependencies = [ [[package]] name = "reedline" -version = "0.4.0" -source = "git+https://github.com/nushell/reedline?branch=main#33a91e53a25e7edcbdf93224497c1a1b55e74fae" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d96c36021d0668f3b4f8c054fce3a9b9b0aa83fc60aa6c59df0e2165f9980763" dependencies = [ "chrono", "crossterm", diff --git a/Cargo.toml b/Cargo.toml index 0259035790..2f13600566 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -54,7 +54,7 @@ nu-term-grid = { path = "./crates/nu-term-grid", version = "0.61.1" } openssl = { version = "0.10.38", features = ["vendored"], optional = true } pretty_env_logger = "0.4.0" rayon = "1.5.1" -reedline = { git = "https://github.com/nushell/reedline", branch = "main", features = ["bashisms"]} +reedline = { version = "0.5.0", features = ["bashisms"]} is_executable = "1.0.1" [dev-dependencies] diff --git a/crates/nu-cli/Cargo.toml b/crates/nu-cli/Cargo.toml index 07d4a2dd7f..724a7b1ac7 100644 --- a/crates/nu-cli/Cargo.toml +++ b/crates/nu-cli/Cargo.toml @@ -18,7 +18,7 @@ nu-protocol = { path = "../nu-protocol", version = "0.61.1" } nu-utils = { path = "../nu-utils", version = "0.61.1" } nu-ansi-term = "0.45.1" nu-color-config = { path = "../nu-color-config", version = "0.61.1" } -reedline = { git = "https://github.com/nushell/reedline", branch = "main", features = ["bashisms"]} +reedline = { version = "0.5.0", features = ["bashisms"]} crossterm = "0.23.0" miette = { version = "4.5.0", features = ["fancy"] } thiserror = "1.0.29" diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml index 4666ca3689..7d12d5216e 100644 --- a/crates/nu-command/Cargo.toml +++ b/crates/nu-command/Cargo.toml @@ -79,7 +79,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 = { git = "https://github.com/nushell/reedline", branch = "main", features = ["bashisms"]} +reedline = { version = "0.5.0", features = ["bashisms"]} 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 }