chore(deps): bump snapbox from 0.3.3 to 0.4.0

Bumps [snapbox](https://github.com/assert-rs/trycmd) from 0.3.3 to 0.4.0.
- [Release notes](https://github.com/assert-rs/trycmd/releases)
- [Changelog](https://github.com/assert-rs/trycmd/blob/main/CHANGELOG.md)
- [Commits](https://github.com/assert-rs/trycmd/compare/snapbox-v0.3.3...snapbox-v0.4.0)

---
updated-dependencies:
- dependency-name: snapbox
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2022-10-01 18:58:27 +00:00 committed by GitHub
parent 261fb792a4
commit f0d971562a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 22 additions and 9 deletions

23
Cargo.lock generated
View file

@ -121,7 +121,7 @@ dependencies = [
"once_cell",
"rustversion",
"shlex",
"snapbox",
"snapbox 0.4.0",
"static_assertions",
"strsim",
"termcolor",
@ -152,7 +152,7 @@ dependencies = [
"os_str_bytes",
"pathdiff",
"shlex",
"snapbox",
"snapbox 0.4.0",
"trycmd",
"unicode-xid",
]
@ -163,7 +163,7 @@ version = "4.0.0"
dependencies = [
"clap 4.0.8",
"clap_complete",
"snapbox",
"snapbox 0.4.0",
]
[[package]]
@ -190,7 +190,7 @@ version = "0.2.2"
dependencies = [
"clap 4.0.8",
"roff",
"snapbox",
"snapbox 0.4.0",
]
[[package]]
@ -827,6 +827,19 @@ dependencies = [
"yansi",
]
[[package]]
name = "snapbox"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f98a96656eecd1621c5830831b48eb6903a9f86aaeb61b9f358a9bd462414ddd"
dependencies = [
"concolor",
"normalize-line-endings",
"similar",
"snapbox-macros",
"yansi",
]
[[package]]
name = "snapbox-macros"
version = "0.3.0"
@ -943,7 +956,7 @@ dependencies = [
"rayon",
"serde",
"shlex",
"snapbox",
"snapbox 0.3.3",
"toml_edit",
]

View file

@ -109,7 +109,7 @@ rustversion = "1"
# Cutting out `filesystem` feature
trycmd = { version = "0.13", default-features = false, features = ["color-auto", "diff", "examples"] }
humantime = "2"
snapbox = "0.3"
snapbox = "0.4"
shlex = "1.1.0"
static_assertions = "1.1.0"
unic-emoji-char = "0.9.0"

View file

@ -49,7 +49,7 @@ shlex = { version = "1.1.0", optional = true }
unicode-xid = { version = "0.2.2", optional = true }
[dev-dependencies]
snapbox = { version = "0.3", features = ["diff"] }
snapbox = { version = "0.4", features = ["diff"] }
# Cutting out `filesystem` feature
trycmd = { version = "0.13", default-features = false, features = ["color-auto", "diff", "examples"] }
clap = { path = "../", version = "4.0.0-alpha.0", default-features = false, features = ["std", "derive", "help"] }

View file

@ -43,5 +43,5 @@ clap = { path = "../", version = "4.0.0-alpha.0", default-features = false, feat
clap_complete = { path = "../clap_complete", version = "4.0.0-alpha.0" }
[dev-dependencies]
snapbox = { version = "0.3", features = ["diff"] }
snapbox = { version = "0.4", features = ["diff"] }
clap = { path = "../", version = "4.0.0-alpha.0", default-features = false, features = ["std", "help"] }

View file

@ -44,7 +44,7 @@ roff = "0.2.1"
clap = { path = "../", version = "4.0.0-alpha.0", default-features = false, features = ["std", "env"] }
[dev-dependencies]
snapbox = { version = "0.3", features = ["diff"] }
snapbox = { version = "0.4", features = ["diff"] }
clap = { path = "../", version = "4.0.0-alpha.0", default-features = false, features = ["std", "help"] }
[features]