mirror of
https://github.com/nushell/nushell
synced 2024-12-27 05:23:11 +00:00
bump to updated reedline (#6626)
This commit is contained in:
parent
13a4474512
commit
f2ad7fae1f
3 changed files with 5 additions and 7 deletions
5
Cargo.lock
generated
5
Cargo.lock
generated
|
@ -4079,8 +4079,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "reedline"
|
name = "reedline"
|
||||||
version = "0.11.0"
|
version = "0.12.0"
|
||||||
source = "git+https://github.com/nushell/reedline?branch=main#3e92f97da21d62ded95ef9bd2c42386c8f701b99"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "311b256d0a325a92d685f1401fccf83341afba1a62d56bbfa3c98b87073db195"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
"crossterm 0.24.0",
|
"crossterm 0.24.0",
|
||||||
|
|
|
@ -53,7 +53,7 @@ nu-system = { path = "./crates/nu-system", version = "0.69.0" }
|
||||||
nu-table = { path = "./crates/nu-table", version = "0.69.0" }
|
nu-table = { path = "./crates/nu-table", version = "0.69.0" }
|
||||||
nu-term-grid = { path = "./crates/nu-term-grid", version = "0.69.0" }
|
nu-term-grid = { path = "./crates/nu-term-grid", version = "0.69.0" }
|
||||||
nu-utils = { path = "./crates/nu-utils", version = "0.69.0" }
|
nu-utils = { path = "./crates/nu-utils", version = "0.69.0" }
|
||||||
reedline = { version = "0.11.0", features = ["bashisms", "sqlite"]}
|
reedline = { version = "0.12.0", features = ["bashisms", "sqlite"]}
|
||||||
|
|
||||||
rayon = "1.5.1"
|
rayon = "1.5.1"
|
||||||
is_executable = "1.0.1"
|
is_executable = "1.0.1"
|
||||||
|
@ -122,6 +122,3 @@ debug = false
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "nu"
|
name = "nu"
|
||||||
path = "src/main.rs"
|
path = "src/main.rs"
|
||||||
|
|
||||||
[patch.crates-io]
|
|
||||||
reedline = { git = "https://github.com/nushell/reedline", branch = "main" }
|
|
||||||
|
|
|
@ -88,7 +88,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.11.0", features = ["bashisms", "sqlite"]}
|
reedline = { version = "0.12.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.23.0", features = ["serde"], optional = true }
|
sqlparser = { version = "0.23.0", features = ["serde"], optional = true }
|
||||||
|
|
Loading…
Reference in a new issue