mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 06:44:16 +00:00
chore(deps): update compatible (dev) (#5151)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
parent
39f5e807af
commit
4054a0c1a5
6 changed files with 16 additions and 16 deletions
16
Cargo.lock
generated
16
Cargo.lock
generated
|
@ -609,18 +609,18 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "color-print"
|
||||
version = "0.3.4"
|
||||
version = "0.3.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f2a5e6504ed8648554968650feecea00557a3476bc040d0ffc33080e66b646d0"
|
||||
checksum = "7a858372ff14bab9b1b30ea504f2a4bc534582aee3e42ba2d41d2a7baba63d5d"
|
||||
dependencies = [
|
||||
"color-print-proc-macro",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "color-print-proc-macro"
|
||||
version = "0.3.4"
|
||||
version = "0.3.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d51beaa537d73d2d1ff34ee70bc095f170420ab2ec5d687ecd3ec2b0d092514b"
|
||||
checksum = "57e37866456a721d0a404439a1adae37a31be4e0055590d053dfe6981e05003f"
|
||||
dependencies = [
|
||||
"nom",
|
||||
"proc-macro2",
|
||||
|
@ -3165,9 +3165,9 @@ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
|||
|
||||
[[package]]
|
||||
name = "shlex"
|
||||
version = "1.1.0"
|
||||
version = "1.2.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
|
||||
checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380"
|
||||
|
||||
[[package]]
|
||||
name = "signal-hook"
|
||||
|
@ -3610,9 +3610,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "trybuild"
|
||||
version = "1.0.83"
|
||||
version = "1.0.85"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "6df60d81823ed9c520ee897489573da4b1d79ffbe006b8134f46de1a1aa03555"
|
||||
checksum = "196a58260a906cedb9bf6d8034b6379d0c11f552416960452f267402ceeddff1"
|
||||
dependencies = [
|
||||
"basic-toml",
|
||||
"glob",
|
||||
|
|
|
@ -105,13 +105,13 @@ clap_builder = { path = "./clap_builder", version = "=4.4.6", default-features =
|
|||
clap_derive = { path = "./clap_derive", version = "=4.4.2", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
trybuild = "1.0.83"
|
||||
trybuild = "1.0.85"
|
||||
rustversion = "1.0.14"
|
||||
# Cutting out `filesystem` feature
|
||||
trycmd = { version = "0.14.18", default-features = false, features = ["color-auto", "diff", "examples"] }
|
||||
humantime = "2.1.0"
|
||||
snapbox = "0.4.13"
|
||||
shlex = "1.1.0"
|
||||
shlex = "1.2.0"
|
||||
static_assertions = "1.1.0"
|
||||
unic-emoji-char = "0.9.0"
|
||||
|
||||
|
|
|
@ -68,13 +68,13 @@ backtrace = { version = "0.3.67", optional = true }
|
|||
unicode-width = { version = "0.1.9", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
trybuild = "1.0.83"
|
||||
trybuild = "1.0.85"
|
||||
rustversion = "1.0.14"
|
||||
# Cutting out `filesystem` feature
|
||||
trycmd = { version = "0.14.18", default-features = false, features = ["color-auto", "diff", "examples"] }
|
||||
humantime = "2.1.0"
|
||||
snapbox = "0.4.13"
|
||||
shlex = "1.1.0"
|
||||
shlex = "1.2.0"
|
||||
static_assertions = "1.1.0"
|
||||
unic-emoji-char = "0.9.0"
|
||||
color-print = "0.3.4"
|
||||
color-print = "0.3.5"
|
||||
|
|
|
@ -35,5 +35,5 @@ clap = { path = "../", version = "4.0.0", default-features = false, features = [
|
|||
clap_complete = { path = "../clap_complete", version = "4.0.0" }
|
||||
|
||||
[dev-dependencies]
|
||||
snapbox = { version = "0.4.12", features = ["diff"] }
|
||||
snapbox = { version = "0.4.13", features = ["diff"] }
|
||||
clap = { path = "../", version = "4.0.0", default-features = false, features = ["std", "help"] }
|
||||
|
|
|
@ -35,6 +35,6 @@ clap = { path = "../", version = "4.0.0", default-features = false, features = [
|
|||
clap_complete = { path = "../clap_complete", version = "4.0.0" }
|
||||
|
||||
[dev-dependencies]
|
||||
snapbox = { version = "0.4.12", features = ["diff", "examples", "path"] }
|
||||
snapbox = { version = "0.4.13", features = ["diff", "examples", "path"] }
|
||||
clap = { path = "../", version = "4.0.0", default-features = false, features = ["std", "help"] }
|
||||
completest = { version = "0.0.20", features = ["nu"] }
|
||||
|
|
|
@ -36,7 +36,7 @@ roff = "0.2.1"
|
|||
clap = { path = "../", version = "4.0.0", default-features = false, features = ["std", "env"] }
|
||||
|
||||
[dev-dependencies]
|
||||
snapbox = { version = "0.4.12", features = ["diff"] }
|
||||
snapbox = { version = "0.4.13", features = ["diff"] }
|
||||
clap = { path = "../", version = "4.0.0", default-features = false, features = ["std", "help"] }
|
||||
|
||||
[features]
|
||||
|
|
Loading…
Reference in a new issue