mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 06:44:16 +00:00
chore(builder): Bump terminal_size to 0.3
For some reason, terminal_size bumped semver recently; they also bumped the rustix version to 0.38. I'd like to reduce the number of copies of OS integration crates (rustix and nix) in my dependency chain. Let's bump to the new version so I can aim to drop rustix 0.37.
This commit is contained in:
parent
7f8df272d9
commit
84f99ff979
2 changed files with 18 additions and 8 deletions
24
Cargo.lock
generated
24
Cargo.lock
generated
|
@ -527,7 +527,7 @@ dependencies = [
|
|||
"snapbox",
|
||||
"static_assertions",
|
||||
"strsim",
|
||||
"terminal_size 0.2.3",
|
||||
"terminal_size 0.3.0",
|
||||
"trybuild",
|
||||
"trycmd",
|
||||
"unic-emoji-char",
|
||||
|
@ -2051,7 +2051,7 @@ dependencies = [
|
|||
"sha2",
|
||||
"sysinfo",
|
||||
"tabled",
|
||||
"terminal_size 0.2.3",
|
||||
"terminal_size 0.2.6",
|
||||
"titlecase",
|
||||
"toml",
|
||||
"umask",
|
||||
|
@ -2097,7 +2097,7 @@ dependencies = [
|
|||
"nu-utils",
|
||||
"ratatui",
|
||||
"strip-ansi-escapes",
|
||||
"terminal_size 0.2.3",
|
||||
"terminal_size 0.2.6",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -3438,12 +3438,22 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "terminal_size"
|
||||
version = "0.2.3"
|
||||
version = "0.2.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "cb20089a8ba2b69debd491f8d2d023761cbf196e999218c591fa1e7e15a21907"
|
||||
checksum = "8e6bf6f19e9f8ed8d4048dc22981458ebcf406d67e94cd422e5ecd73d63b3237"
|
||||
dependencies = [
|
||||
"rustix 0.36.4",
|
||||
"windows-sys 0.42.0",
|
||||
"rustix 0.37.7",
|
||||
"windows-sys 0.48.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "terminal_size"
|
||||
version = "0.3.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7"
|
||||
dependencies = [
|
||||
"rustix 0.38.8",
|
||||
"windows-sys 0.48.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
|
@ -63,7 +63,7 @@ unicase = { version = "2.6.0", optional = true }
|
|||
strsim = { version = "0.10.0", optional = true }
|
||||
anstream = { version = "0.5.0", optional = true }
|
||||
anstyle = "1.0.0"
|
||||
terminal_size = { version = "0.2.1", optional = true }
|
||||
terminal_size = { version = "0.3.0", optional = true }
|
||||
backtrace = { version = "0.3.67", optional = true }
|
||||
unicode-width = { version = "0.1.9", optional = true }
|
||||
|
||||
|
|
Loading…
Reference in a new issue