mirror of
https://github.com/nushell/nushell
synced 2025-01-25 19:35:25 +00:00
Pin to nu-ansi-term
0.47 (#8440)
# Description Update reedline to a commit that uses the same version as we share types # User-Facing Changes (-) # Tests + Formatting Build check
This commit is contained in:
parent
86faf753bd
commit
4eec4a27c7
9 changed files with 13 additions and 12 deletions
7
Cargo.lock
generated
7
Cargo.lock
generated
|
@ -2695,8 +2695,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "nu-ansi-term"
|
name = "nu-ansi-term"
|
||||||
version = "0.46.0"
|
version = "0.47.0"
|
||||||
source = "git+https://github.com/nushell/nu-ansi-term.git?branch=main#9fdb618dc94a192720ac8b4bac3d6a4ef5be3e91"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "1df031e117bca634c262e9bd3173776844b6c17a90b3741c9163663b4385af76"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"windows-sys 0.45.0",
|
"windows-sys 0.45.0",
|
||||||
]
|
]
|
||||||
|
@ -4277,7 +4278,7 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "reedline"
|
name = "reedline"
|
||||||
version = "0.16.0"
|
version = "0.16.0"
|
||||||
source = "git+https://github.com/nushell/reedline.git?branch=main#ac1d9549a3df0743c96162a632e5f73d74f12abc"
|
source = "git+https://github.com/nushell/reedline.git?branch=main#6a67d27e70132ecce1c8dbbc0be94e72fc95ff32"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
"crossterm 0.24.0",
|
"crossterm 0.24.0",
|
||||||
|
|
|
@ -46,7 +46,7 @@ crossterm = "0.24.0"
|
||||||
ctrlc = "3.2.1"
|
ctrlc = "3.2.1"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
miette = { version = "5.5.0", features = ["fancy-no-backtrace"] }
|
miette = { version = "5.5.0", features = ["fancy-no-backtrace"] }
|
||||||
nu-ansi-term = "0.46.0"
|
nu-ansi-term = "0.47.0"
|
||||||
nu-cli = { path = "./crates/nu-cli", version = "0.76.1" }
|
nu-cli = { path = "./crates/nu-cli", version = "0.76.1" }
|
||||||
nu-color-config = { path = "./crates/nu-color-config", version = "0.76.1" }
|
nu-color-config = { path = "./crates/nu-color-config", version = "0.76.1" }
|
||||||
nu-cmd-lang = { path = "./crates/nu-cmd-lang", version = "0.76.1" }
|
nu-cmd-lang = { path = "./crates/nu-cmd-lang", version = "0.76.1" }
|
||||||
|
@ -158,7 +158,7 @@ bench = false
|
||||||
# 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" }
|
||||||
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"}
|
||||||
|
|
||||||
# Criterion benchmarking setup
|
# Criterion benchmarking setup
|
||||||
# Run all benchmarks with `cargo bench`
|
# Run all benchmarks with `cargo bench`
|
||||||
|
|
|
@ -21,7 +21,7 @@ nu-path = { path = "../nu-path", version = "0.76.1" }
|
||||||
nu-parser = { path = "../nu-parser", version = "0.76.1" }
|
nu-parser = { path = "../nu-parser", version = "0.76.1" }
|
||||||
nu-protocol = { path = "../nu-protocol", version = "0.76.1" }
|
nu-protocol = { path = "../nu-protocol", version = "0.76.1" }
|
||||||
nu-utils = { path = "../nu-utils", version = "0.76.1" }
|
nu-utils = { path = "../nu-utils", version = "0.76.1" }
|
||||||
nu-ansi-term = "0.46.0"
|
nu-ansi-term = "0.47.0"
|
||||||
nu-color-config = { path = "../nu-color-config", version = "0.76.1" }
|
nu-color-config = { path = "../nu-color-config", version = "0.76.1" }
|
||||||
|
|
||||||
reedline = { version = "0.16.0", features = ["bashisms", "sqlite"] }
|
reedline = { version = "0.16.0", features = ["bashisms", "sqlite"] }
|
||||||
|
|
|
@ -12,7 +12,7 @@ version = "0.76.1"
|
||||||
bench = false
|
bench = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
nu-ansi-term = "0.46.0"
|
nu-ansi-term = "0.47.0"
|
||||||
nu-color-config = { path = "../nu-color-config", version = "0.76.1" }
|
nu-color-config = { path = "../nu-color-config", version = "0.76.1" }
|
||||||
nu-engine = { path = "../nu-engine", version = "0.76.1" }
|
nu-engine = { path = "../nu-engine", version = "0.76.1" }
|
||||||
nu-parser = { path = "../nu-parser", version = "0.76.1" }
|
nu-parser = { path = "../nu-parser", version = "0.76.1" }
|
||||||
|
|
|
@ -16,7 +16,7 @@ serde = { version="1.0.123", features=["derive"] }
|
||||||
tabled = { version = "0.10.0", features = ["color"], default-features = false }
|
tabled = { version = "0.10.0", features = ["color"], default-features = false }
|
||||||
|
|
||||||
nu-protocol = { path = "../nu-protocol", version = "0.76.1" }
|
nu-protocol = { path = "../nu-protocol", version = "0.76.1" }
|
||||||
nu-ansi-term = "0.46.0"
|
nu-ansi-term = "0.47.0"
|
||||||
nu-utils = { path = "../nu-utils", version = "0.76.1" }
|
nu-utils = { path = "../nu-utils", version = "0.76.1" }
|
||||||
nu-engine = { path = "../nu-engine", version = "0.76.1" }
|
nu-engine = { path = "../nu-engine", version = "0.76.1" }
|
||||||
nu-json = { path="../nu-json", version = "0.76.1" }
|
nu-json = { path="../nu-json", version = "0.76.1" }
|
||||||
|
|
|
@ -13,7 +13,7 @@ version = "0.76.1"
|
||||||
bench = false
|
bench = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
nu-ansi-term = "0.46.0"
|
nu-ansi-term = "0.47.0"
|
||||||
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.76.1" }
|
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.76.1" }
|
||||||
nu-color-config = { path = "../nu-color-config", version = "0.76.1" }
|
nu-color-config = { path = "../nu-color-config", version = "0.76.1" }
|
||||||
nu-engine = { path = "../nu-engine", version = "0.76.1" }
|
nu-engine = { path = "../nu-engine", version = "0.76.1" }
|
||||||
|
|
|
@ -11,7 +11,7 @@ version = "0.76.1"
|
||||||
bench = false
|
bench = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
nu-ansi-term = "0.46.0"
|
nu-ansi-term = "0.47.0"
|
||||||
nu-protocol = { path = "../nu-protocol", version = "0.76.1" }
|
nu-protocol = { path = "../nu-protocol", version = "0.76.1" }
|
||||||
nu-parser = { path = "../nu-parser", version = "0.76.1" }
|
nu-parser = { path = "../nu-parser", version = "0.76.1" }
|
||||||
nu-color-config = { path = "../nu-color-config", version = "0.76.1" }
|
nu-color-config = { path = "../nu-color-config", version = "0.76.1" }
|
||||||
|
|
|
@ -14,7 +14,7 @@ path = "src/lib.rs"
|
||||||
bench = false
|
bench = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
nu-ansi-term = "0.46.0"
|
nu-ansi-term = "0.47.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
heapless = { version = "0.7.8", default-features = false }
|
heapless = { version = "0.7.8", default-features = false }
|
||||||
|
|
|
@ -11,7 +11,7 @@ version = "0.76.1"
|
||||||
bench = false
|
bench = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
nu-ansi-term = "0.46.0"
|
nu-ansi-term = "0.47.0"
|
||||||
nu-protocol = { path = "../nu-protocol", version = "0.76.1" }
|
nu-protocol = { path = "../nu-protocol", version = "0.76.1" }
|
||||||
nu-utils = { path = "../nu-utils", version = "0.76.1" }
|
nu-utils = { path = "../nu-utils", version = "0.76.1" }
|
||||||
nu-engine = { path = "../nu-engine", version = "0.76.1" }
|
nu-engine = { path = "../nu-engine", version = "0.76.1" }
|
||||||
|
|
Loading…
Reference in a new issue