mirror of
https://github.com/nushell/nushell.git
synced 2024-11-26 02:13:47 +01:00
Pin reedline to 0.11.0 release (#6497)
Includes minor bugfixes around the history Release notes: https://github.com/nushell/reedline/releases/tag/v0.11.0
This commit is contained in:
parent
d86350af80
commit
f7d3ccfc70
5
Cargo.lock
generated
5
Cargo.lock
generated
@ -4078,8 +4078,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "reedline"
|
name = "reedline"
|
||||||
version = "0.10.0"
|
version = "0.11.0"
|
||||||
source = "git+https://github.com/nushell/reedline?branch=main#fe889ae5c4b4fa7492cf6f138ccd4274b0f682cf"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "5559b5ab4817b0da0c6fc6814edfae537209e01d955a2f3e7595606e3d039691"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
"crossterm 0.24.0",
|
"crossterm 0.24.0",
|
||||||
|
@ -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-table = { path = "./crates/nu-table", version = "0.67.1" }
|
||||||
nu-term-grid = { path = "./crates/nu-term-grid", 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" }
|
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"
|
rayon = "1.5.1"
|
||||||
is_executable = "1.0.1"
|
is_executable = "1.0.1"
|
||||||
simplelog = "0.12.0"
|
simplelog = "0.12.0"
|
||||||
@ -122,5 +122,3 @@ debug = false
|
|||||||
name = "nu"
|
name = "nu"
|
||||||
path = "src/main.rs"
|
path = "src/main.rs"
|
||||||
|
|
||||||
[patch.crates-io]
|
|
||||||
reedline = { git = "https://github.com/nushell/reedline", branch = "main" }
|
|
||||||
|
@ -20,7 +20,7 @@ nu-protocol = { path = "../nu-protocol", version = "0.67.1" }
|
|||||||
nu-utils = { path = "../nu-utils", version = "0.67.1" }
|
nu-utils = { path = "../nu-utils", version = "0.67.1" }
|
||||||
nu-ansi-term = "0.46.0"
|
nu-ansi-term = "0.46.0"
|
||||||
nu-color-config = { path = "../nu-color-config", version = "0.67.1" }
|
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"
|
atty = "0.2.14"
|
||||||
chrono = "0.4.21"
|
chrono = "0.4.21"
|
||||||
|
@ -87,7 +87,7 @@ unicode-segmentation = "1.8.0"
|
|||||||
url = "2.2.1"
|
url = "2.2.1"
|
||||||
uuid = { version = "1.1.2", features = ["v4"] }
|
uuid = { version = "1.1.2", features = ["v4"] }
|
||||||
which = { version = "4.3.0", optional = true }
|
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"] }
|
wax = { version = "0.5.0", features = ["diagnostics"] }
|
||||||
rusqlite = { version = "0.28.0", features = ["bundled"], optional = true }
|
rusqlite = { version = "0.28.0", features = ["bundled"], optional = true }
|
||||||
sqlparser = { version = "0.16.0", features = ["serde"], optional = true }
|
sqlparser = { version = "0.16.0", features = ["serde"], optional = true }
|
||||||
|
Loading…
Reference in New Issue
Block a user