mirror of
https://github.com/nushell/nushell.git
synced 2025-02-03 12:09:38 +01:00
Pin reedline to 0.14.0
release (#7050)
See release notes: https://github.com/nushell/reedline/releases/tag/v0.14.0
This commit is contained in:
parent
611fe41788
commit
3d8d7787de
5
Cargo.lock
generated
5
Cargo.lock
generated
@ -3955,8 +3955,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "reedline"
|
name = "reedline"
|
||||||
version = "0.13.0"
|
version = "0.14.0"
|
||||||
source = "git+https://github.com/nushell/reedline.git?branch=main#431d2ab65640cf1724d72e5e63442a3ae69f570f"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "75d91d2a38dbdaf0c748a96055c14aa4746be9add5f4aea4b1460e6e6492f770"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
"crossterm 0.24.0",
|
"crossterm 0.24.0",
|
||||||
|
@ -52,7 +52,7 @@ nu-system = { path = "./crates/nu-system", version = "0.70.1" }
|
|||||||
nu-table = { path = "./crates/nu-table", version = "0.70.1" }
|
nu-table = { path = "./crates/nu-table", version = "0.70.1" }
|
||||||
nu-term-grid = { path = "./crates/nu-term-grid", version = "0.70.1" }
|
nu-term-grid = { path = "./crates/nu-term-grid", version = "0.70.1" }
|
||||||
nu-utils = { path = "./crates/nu-utils", version = "0.70.1" }
|
nu-utils = { path = "./crates/nu-utils", version = "0.70.1" }
|
||||||
reedline = { version = "0.13.0", features = ["bashisms", "sqlite"]}
|
reedline = { version = "0.14.0", features = ["bashisms", "sqlite"]}
|
||||||
|
|
||||||
rayon = "1.5.1"
|
rayon = "1.5.1"
|
||||||
is_executable = "1.0.1"
|
is_executable = "1.0.1"
|
||||||
@ -130,4 +130,4 @@ path = "src/main.rs"
|
|||||||
# To use a development version of a dependency please use a global override here
|
# To use a development version of a dependency please use a global override here
|
||||||
# changing versions in each sub-crate of the workspace is tedious
|
# changing versions in each sub-crate of the workspace is tedious
|
||||||
[patch.crates-io]
|
[patch.crates-io]
|
||||||
reedline = { git = "https://github.com/nushell/reedline.git", branch = "main" }
|
# reedline = { git = "https://github.com/nushell/reedline.git", branch = "main" }
|
||||||
|
@ -20,7 +20,7 @@ nu-protocol = { path = "../nu-protocol", version = "0.70.1" }
|
|||||||
nu-utils = { path = "../nu-utils", version = "0.70.1" }
|
nu-utils = { path = "../nu-utils", version = "0.70.1" }
|
||||||
nu-ansi-term = "0.46.0"
|
nu-ansi-term = "0.46.0"
|
||||||
nu-color-config = { path = "../nu-color-config", version = "0.70.1" }
|
nu-color-config = { path = "../nu-color-config", version = "0.70.1" }
|
||||||
reedline = { version = "0.13.0", features = ["bashisms", "sqlite"]}
|
reedline = { version = "0.14.0", features = ["bashisms", "sqlite"]}
|
||||||
|
|
||||||
atty = "0.2.14"
|
atty = "0.2.14"
|
||||||
chrono = "0.4.21"
|
chrono = "0.4.21"
|
||||||
|
@ -86,7 +86,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.13.0", features = ["bashisms", "sqlite"]}
|
reedline = { version = "0.14.0", features = ["bashisms", "sqlite"]}
|
||||||
wax = { version = "0.5.0" }
|
wax = { version = "0.5.0" }
|
||||||
rusqlite = { version = "0.28.0", features = ["bundled"], optional = true }
|
rusqlite = { version = "0.28.0", features = ["bundled"], optional = true }
|
||||||
sqlparser = { version = "0.23.0", features = ["serde"], optional = true }
|
sqlparser = { version = "0.23.0", features = ["serde"], optional = true }
|
||||||
|
Loading…
Reference in New Issue
Block a user