mirror of
https://github.com/nushell/nushell
synced 2024-12-27 05:23:11 +00:00
Pin reedline
to 0.30.0 release (#12081)
https://github.com/nushell/reedline/releases/tag/v0.30.0
This commit is contained in:
parent
565c6409d9
commit
9a07b41c9d
4 changed files with 7 additions and 6 deletions
5
Cargo.lock
generated
5
Cargo.lock
generated
|
@ -4582,8 +4582,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "reedline"
|
name = "reedline"
|
||||||
version = "0.29.0"
|
version = "0.30.0"
|
||||||
source = "git+https://github.com/nushell/reedline?branch=main#4fd129588a7373acd3e154fb55a5b572948f7df7"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "413a9fa6a5d8c937d3ae1e975bfb6a918bb0b6cdfae6a10416218c837a31b8fc"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"arboard",
|
"arboard",
|
||||||
"chrono",
|
"chrono",
|
||||||
|
|
|
@ -73,7 +73,7 @@ nu-protocol = { path = "./crates/nu-protocol", version = "0.90.2" }
|
||||||
nu-std = { path = "./crates/nu-std", version = "0.90.2" }
|
nu-std = { path = "./crates/nu-std", version = "0.90.2" }
|
||||||
nu-utils = { path = "./crates/nu-utils", version = "0.90.2" }
|
nu-utils = { path = "./crates/nu-utils", version = "0.90.2" }
|
||||||
|
|
||||||
reedline = { version = "0.29.0", features = ["bashisms", "sqlite"] }
|
reedline = { version = "0.30.0", features = ["bashisms", "sqlite"] }
|
||||||
|
|
||||||
crossterm = "0.27"
|
crossterm = "0.27"
|
||||||
ctrlc = "3.4"
|
ctrlc = "3.4"
|
||||||
|
@ -179,7 +179,7 @@ bench = false
|
||||||
# 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", branch = "main" }
|
# reedline = { git = "https://github.com/nushell/reedline", branch = "main" }
|
||||||
# nu-ansi-term = {git = "https://github.com/nushell/nu-ansi-term.git", branch = "main"}
|
# nu-ansi-term = {git = "https://github.com/nushell/nu-ansi-term.git", branch = "main"}
|
||||||
|
|
||||||
# Run all benchmarks with `cargo bench`
|
# Run all benchmarks with `cargo bench`
|
||||||
|
|
|
@ -25,7 +25,7 @@ nu-protocol = { path = "../nu-protocol", version = "0.90.2" }
|
||||||
nu-utils = { path = "../nu-utils", version = "0.90.2" }
|
nu-utils = { path = "../nu-utils", version = "0.90.2" }
|
||||||
nu-color-config = { path = "../nu-color-config", version = "0.90.2" }
|
nu-color-config = { path = "../nu-color-config", version = "0.90.2" }
|
||||||
nu-ansi-term = "0.50.0"
|
nu-ansi-term = "0.50.0"
|
||||||
reedline = { version = "0.29.0", features = ["bashisms", "sqlite"] }
|
reedline = { version = "0.30.0", features = ["bashisms", "sqlite"] }
|
||||||
|
|
||||||
chrono = { default-features = false, features = ["std"], version = "0.4" }
|
chrono = { default-features = false, features = ["std"], version = "0.4" }
|
||||||
crossterm = "0.27"
|
crossterm = "0.27"
|
||||||
|
|
|
@ -12,7 +12,7 @@ nu-cli = { path = "../nu-cli", version = "0.90.2" }
|
||||||
nu-parser = { path = "../nu-parser", version = "0.90.2" }
|
nu-parser = { path = "../nu-parser", version = "0.90.2" }
|
||||||
nu-protocol = { path = "../nu-protocol", version = "0.90.2" }
|
nu-protocol = { path = "../nu-protocol", version = "0.90.2" }
|
||||||
|
|
||||||
reedline = { version = "0.29" }
|
reedline = { version = "0.30" }
|
||||||
|
|
||||||
crossbeam-channel = "0.5.8"
|
crossbeam-channel = "0.5.8"
|
||||||
lsp-types = "0.95.0"
|
lsp-types = "0.95.0"
|
||||||
|
|
Loading…
Reference in a new issue