mirror of
https://github.com/nushell/nushell
synced 2025-01-13 21:55:07 +00:00
Update nu-ansi-term to remove Deref
impl (#5706)
Resolves an unexpected issue due to `Deref` and `ToString` interacting Details: https://github.com/nushell/nu-ansi-term/pull/5 and https://github.com/nushell/reedline/pull/435#issuecomment-1141348209 Also updates reedline: Includes a fix for a panic when the directory containing the history is deleted during a running reedline session. (nushell/reedline#436)
This commit is contained in:
parent
0c16464320
commit
a82fa75c31
7 changed files with 10 additions and 9 deletions
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -2492,9 +2492,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "nu-ansi-term"
|
name = "nu-ansi-term"
|
||||||
version = "0.45.1"
|
version = "0.46.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "c7bca0d33a384280d1563b97f49cb95303df9fa22588739a04b7d8015c1ccd50"
|
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"overload",
|
"overload",
|
||||||
"winapi 0.3.9",
|
"winapi 0.3.9",
|
||||||
|
@ -3795,7 +3795,7 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "reedline"
|
name = "reedline"
|
||||||
version = "0.6.0"
|
version = "0.6.0"
|
||||||
source = "git+https://github.com/nushell/reedline?branch=main#a3dbc6232b4f82af965ac361dc2eb05608c65258"
|
source = "git+https://github.com/nushell/reedline?branch=main#09bbb24bfdcf4183914b671b0fc0b70d46c4b3fa"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
"crossterm",
|
"crossterm",
|
||||||
|
|
|
@ -37,7 +37,7 @@ crossterm = "0.23.0"
|
||||||
ctrlc = "3.2.1"
|
ctrlc = "3.2.1"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
miette = "4.5.0"
|
miette = "4.5.0"
|
||||||
nu-ansi-term = "0.45.1"
|
nu-ansi-term = "0.46.0"
|
||||||
nu-cli = { path="./crates/nu-cli", version = "0.63.1" }
|
nu-cli = { path="./crates/nu-cli", version = "0.63.1" }
|
||||||
nu-color-config = { path = "./crates/nu-color-config", version = "0.63.1" }
|
nu-color-config = { path = "./crates/nu-color-config", version = "0.63.1" }
|
||||||
nu-command = { path="./crates/nu-command", version = "0.63.1" }
|
nu-command = { path="./crates/nu-command", version = "0.63.1" }
|
||||||
|
@ -118,3 +118,4 @@ debug = false
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "nu"
|
name = "nu"
|
||||||
path = "src/main.rs"
|
path = "src/main.rs"
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ nu-path = { path = "../nu-path", version = "0.63.1" }
|
||||||
nu-parser = { path = "../nu-parser", version = "0.63.1" }
|
nu-parser = { path = "../nu-parser", version = "0.63.1" }
|
||||||
nu-protocol = { path = "../nu-protocol", version = "0.63.1" }
|
nu-protocol = { path = "../nu-protocol", version = "0.63.1" }
|
||||||
nu-utils = { path = "../nu-utils", version = "0.63.1" }
|
nu-utils = { path = "../nu-utils", version = "0.63.1" }
|
||||||
nu-ansi-term = "0.45.1"
|
nu-ansi-term = "0.46.0"
|
||||||
reedline = { git = "https://github.com/nushell/reedline", branch = "main", features = ["bashisms"]}
|
reedline = { git = "https://github.com/nushell/reedline", branch = "main", features = ["bashisms"]}
|
||||||
nu-color-config = { path = "../nu-color-config", version = "0.63.1" }
|
nu-color-config = { path = "../nu-color-config", version = "0.63.1" }
|
||||||
crossterm = "0.23.0"
|
crossterm = "0.23.0"
|
||||||
|
|
|
@ -8,7 +8,7 @@ version = "0.63.1"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
nu-protocol = { path = "../nu-protocol", version = "0.63.1" }
|
nu-protocol = { path = "../nu-protocol", version = "0.63.1" }
|
||||||
nu-ansi-term = "0.45.1"
|
nu-ansi-term = "0.46.0"
|
||||||
nu-json = { path = "../nu-json", version = "0.63.1" }
|
nu-json = { path = "../nu-json", version = "0.63.1" }
|
||||||
nu-table = { path = "../nu-table", version = "0.63.1" }
|
nu-table = { path = "../nu-table", version = "0.63.1" }
|
||||||
serde = { version="1.0.123", features=["derive"] }
|
serde = { version="1.0.123", features=["derive"] }
|
||||||
|
|
|
@ -23,7 +23,7 @@ nu-table = { path = "../nu-table", version = "0.63.1" }
|
||||||
nu-term-grid = { path = "../nu-term-grid", version = "0.63.1" }
|
nu-term-grid = { path = "../nu-term-grid", version = "0.63.1" }
|
||||||
nu-test-support = { path = "../nu-test-support", version = "0.63.1" }
|
nu-test-support = { path = "../nu-test-support", version = "0.63.1" }
|
||||||
nu-utils = { path = "../nu-utils", version = "0.63.1" }
|
nu-utils = { path = "../nu-utils", version = "0.63.1" }
|
||||||
nu-ansi-term = "0.45.1"
|
nu-ansi-term = "0.46.0"
|
||||||
|
|
||||||
# Potential dependencies for extras
|
# Potential dependencies for extras
|
||||||
alphanumeric-sort = "1.4.4"
|
alphanumeric-sort = "1.4.4"
|
||||||
|
|
|
@ -16,7 +16,7 @@ name = "nu_pretty_hex"
|
||||||
path = "src/main.rs"
|
path = "src/main.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
nu-ansi-term = "0.45.1"
|
nu-ansi-term = "0.46.0"
|
||||||
rand = "0.8.3"
|
rand = "0.8.3"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|
|
@ -12,7 +12,7 @@ name = "table"
|
||||||
path = "src/main.rs"
|
path = "src/main.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
nu-ansi-term = "0.45.1"
|
nu-ansi-term = "0.46.0"
|
||||||
nu-protocol = { path = "../nu-protocol", version = "0.63.1" }
|
nu-protocol = { path = "../nu-protocol", version = "0.63.1" }
|
||||||
regex = "1.4"
|
regex = "1.4"
|
||||||
unicode-width = "0.1.8"
|
unicode-width = "0.1.8"
|
||||||
|
|
Loading…
Reference in a new issue