From a088081695d82c70a5e59784f7e0c0255c764607 Mon Sep 17 00:00:00 2001 From: Fernando Herrera Date: Fri, 1 Apr 2022 19:22:40 +0100 Subject: [PATCH] update reedline (#5062) --- Cargo.lock | 2 +- Cargo.toml | 4 ++-- crates/nu-cli/Cargo.toml | 4 ++-- crates/nu-command/Cargo.toml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e45943432d..6f38a3ed9f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3428,7 +3428,7 @@ dependencies = [ [[package]] name = "reedline" version = "0.3.1" -source = "git+https://github.com/nushell/reedline?branch=main#60386ac6107e8c5b4cdbdc415011c0f4fe2f0f77" +source = "git+https://github.com/nushell/reedline?branch=main#accce4af7f50ea143ed818dd5fe58484e107e922" dependencies = [ "chrono", "crossterm", diff --git a/Cargo.toml b/Cargo.toml index 68d580b1fa..f294003bbd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -55,8 +55,8 @@ nu-term-grid = { path = "./crates/nu-term-grid", version = "0.60.1" } nu-utils = { path = "./crates/nu-utils", version = "0.60.1" } pretty_env_logger = "0.4.0" rayon = "1.5.1" -#reedline = "0.3.0" -reedline = { git = "https://github.com/nushell/reedline", branch = "main" } +#reedline = {version = "0.3.0", features = ["bashisms"]} +reedline = { git = "https://github.com/nushell/reedline", branch = "main", features = ["bashisms"]} is_executable = "1.0.1" [dev-dependencies] diff --git a/crates/nu-cli/Cargo.toml b/crates/nu-cli/Cargo.toml index 4c719db20a..d757cd88ce 100644 --- a/crates/nu-cli/Cargo.toml +++ b/crates/nu-cli/Cargo.toml @@ -19,8 +19,8 @@ crossterm = "0.23.0" crossterm_winapi = "0.9.0" miette = { version = "4.1.0", features = ["fancy"] } thiserror = "1.0.29" -#reedline = "0.3.0" -reedline = { git = "https://github.com/nushell/reedline", branch = "main" } +#reedline = {"0.3.0", features = ["bashisms"]} +reedline = { git = "https://github.com/nushell/reedline", branch = "main", features = ["bashisms"]} log = "0.4" is_executable = "1.0.1" diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml index 315728df4a..d90407b863 100644 --- a/crates/nu-command/Cargo.toml +++ b/crates/nu-command/Cargo.toml @@ -77,8 +77,8 @@ unicode-segmentation = "1.8.0" url = "2.2.1" uuid = { version = "0.8.2", features = ["v4"] } which = { version = "4.2.2", optional = true } -#reedline = "0.3.0" -reedline = { git = "https://github.com/nushell/reedline", branch = "main" } +#reedline = {version = "0.3.0", features = ["bashisms"]} +reedline = { git = "https://github.com/nushell/reedline", branch = "main", features = ["bashisms"]} zip = { version="0.5.9", optional = true } [target.'cfg(unix)'.dependencies]