Merge pull request #5146 from epage/update

chore: Upgrade anstream
This commit is contained in:
Ed Page 2023-09-28 14:35:44 -05:00 committed by GitHub
commit 418c0017a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 17 additions and 17 deletions

20
Cargo.lock generated
View file

@ -109,9 +109,9 @@ dependencies = [
[[package]]
name = "anstream"
version = "0.5.0"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1f58811cfac344940f1a400b6e6231ce35171f614f26439e80f8c1465c5cc0c"
checksum = "bff2cf94a3dbe2d57cbd56485e1bd7436455058034d6c2d47be51d4e5e4bc6ab"
dependencies = [
"anstyle",
"anstyle-parse",
@ -147,9 +147,9 @@ dependencies = [
[[package]]
name = "anstyle-wincon"
version = "2.1.0"
version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58f54d10c6dfa51283a066ceab3ec1ab78d13fae00aa49243a45e4571fb79dfd"
checksum = "0238ca56c96dfa37bdf7c373c8886dd591322500aceeeccdb2216fe06dc2f796"
dependencies = [
"anstyle",
"windows-sys 0.48.0",
@ -3234,9 +3234,9 @@ checksum = "f67ad224767faa3c7d8b6d91985b78e70a1324408abcb1cfcc2be4c06bc06043"
[[package]]
name = "snapbox"
version = "0.4.12"
version = "0.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad90eb3a2e3a8031d636d45bd4832751aefd58a291b553f7305a2bacae21aff3"
checksum = "7b439536a42c43be148b610c7f7f968fb79a457254910a9cb20900da73cd3271"
dependencies = [
"anstream",
"anstyle",
@ -3257,9 +3257,9 @@ dependencies = [
[[package]]
name = "snapbox-macros"
version = "0.3.5"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95f4ffd811b87da98d0e48285134b7847954bd76e843bb794a893b47ca3ee325"
checksum = "ed1559baff8a696add3322b9be3e940d433e7bb4e38d79017205fd37ff28b28e"
dependencies = [
"anstream",
]
@ -3625,9 +3625,9 @@ dependencies = [
[[package]]
name = "trycmd"
version = "0.14.17"
version = "0.14.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc6a42f89ccf3c6ee115608a68e256c172734d525a4ac36d4a17a6d4a8108149"
checksum = "a5bff680f217f2c7cc246aa5313ef9c1802449b1b8f859d28765355fda1c421f"
dependencies = [
"glob",
"humantime",

View file

@ -108,9 +108,9 @@ clap_derive = { path = "./clap_derive", version = "=4.4.2", optional = true }
trybuild = "1.0.83"
rustversion = "1.0.14"
# Cutting out `filesystem` feature
trycmd = { version = "0.14.17", default-features = false, features = ["color-auto", "diff", "examples"] }
trycmd = { version = "0.14.18", default-features = false, features = ["color-auto", "diff", "examples"] }
humantime = "2.1.0"
snapbox = "0.4.12"
snapbox = "0.4.13"
shlex = "1.1.0"
static_assertions = "1.1.0"
unic-emoji-char = "0.9.0"

View file

@ -61,7 +61,7 @@ bench = false
clap_lex = { path = "../clap_lex", version = "0.5.0" }
unicase = { version = "2.6.0", optional = true }
strsim = { version = "0.10.0", optional = true }
anstream = { version = "0.5.0", optional = true }
anstream = { version = "0.6.0", optional = true }
anstyle = "1.0.0"
terminal_size = { version = "0.3.0", optional = true }
backtrace = { version = "0.3.67", optional = true }
@ -71,9 +71,9 @@ unicode-width = { version = "0.1.9", optional = true }
trybuild = "1.0.83"
rustversion = "1.0.14"
# Cutting out `filesystem` feature
trycmd = { version = "0.14.17", default-features = false, features = ["color-auto", "diff", "examples"] }
trycmd = { version = "0.14.18", default-features = false, features = ["color-auto", "diff", "examples"] }
humantime = "2.1.0"
snapbox = "0.4.12"
snapbox = "0.4.13"
shlex = "1.1.0"
static_assertions = "1.1.0"
unic-emoji-char = "0.9.0"

View file

@ -40,9 +40,9 @@ shlex = { version = "1.1.0", optional = true }
unicode-xid = { version = "0.2.2", optional = true }
[dev-dependencies]
snapbox = { version = "0.4.12", features = ["diff", "path", "examples"] }
snapbox = { version = "0.4.13", features = ["diff", "path", "examples"] }
# Cutting out `filesystem` feature
trycmd = { version = "0.14.17", default-features = false, features = ["color-auto", "diff", "examples"] }
trycmd = { version = "0.14.18", default-features = false, features = ["color-auto", "diff", "examples"] }
completest = "0.0.20"
clap = { path = "../", version = "4.0.0", default-features = false, features = ["std", "derive", "help"] }