diff --git a/Cargo.lock b/Cargo.lock index 70897cfe..1225e2c6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -66,7 +66,7 @@ dependencies = [ [[package]] name = "cargo-insta" -version = "1.41.0" +version = "1.41.1" dependencies = [ "cargo_metadata", "clap", @@ -354,7 +354,7 @@ dependencies = [ [[package]] name = "insta" -version = "1.41.0" +version = "1.41.1" dependencies = [ "clap", "console", diff --git a/cargo-insta/Cargo.toml b/cargo-insta/Cargo.toml index 044eddf0..cb475391 100644 --- a/cargo-insta/Cargo.toml +++ b/cargo-insta/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-insta" -version = "1.41.0" +version = "1.41.1" license = "Apache-2.0" authors = ["Armin Ronacher "] description = "A review tool for the insta snapshot testing library for Rust" @@ -14,7 +14,12 @@ readme = "README.md" rust-version = "1.65.0" [dependencies] -insta = { version = "=1.41.0", path = "../insta", features = ["json", "yaml", "redactions", "_cargo_insta_internal"] } +insta = { version = "=1.41.1", path = "../insta", features = [ + "json", + "yaml", + "redactions", + "_cargo_insta_internal", +] } cargo_metadata = { version = "0.18.0", default-features = false } console = "0.15.4" serde = { version = "1.0.117", features = ["derive"] } @@ -27,15 +32,15 @@ ignore = "0.4.17" uuid = { version = "1.0.0", features = ["v4"] } tempfile = "3.5.0" # Needs pinning in Cargo.lock because of MSRV -semver = {version = "1.0.7", features = ["serde"]} +semver = { version = "1.0.7", features = ["serde"] } lazy_static = "1.4.0" -clap = { workspace=true } +clap = { workspace = true } open = "5.3.0" itertools = "0.10.0" [dev-dependencies] walkdir = "2.3.1" -similar= "2.2.1" +similar = "2.2.1" itertools = "0.10.0" termcolor = "1.1.2" os_pipe = "0.9.0" diff --git a/insta/Cargo.toml b/insta/Cargo.toml index 6759e9a3..924ddf03 100644 --- a/insta/Cargo.toml +++ b/insta/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "insta" -version = "1.41.0" +version = "1.41.1" license = "Apache-2.0" authors = ["Armin Ronacher "] description = "A snapshot testing library for Rust" @@ -11,9 +11,7 @@ repository = "https://github.com/mitsuhiko/insta" keywords = ["snapshot", "testing", "jest", "approval"] categories = ["development-tools::testing"] readme = "README.md" -exclude = [ - "assets/*" -] +exclude = ["assets/*"] [package.metadata.docs.rs] all-features = true @@ -55,13 +53,16 @@ toml = { version = "0.5.7", optional = true } globset = { version = "0.4.6", optional = true } walkdir = { version = "2.3.1", optional = true } similar = { version = "2.1.0", features = ["inline"] } -regex = { version = "1.6.0", default-features = false, optional = true, features = ["std", "unicode"] } +regex = { version = "1.6.0", default-features = false, optional = true, features = [ + "std", + "unicode", +] } serde = { version = "1.0.117", optional = true } linked-hash-map = "0.5.6" lazy_static = "1.4.0" # Not yet supported in our MSRV of 1.60.0 # clap = { workspace=true, optional = true } -clap = {version = "4.1", features = ["derive", "env"], optional = true} +clap = { version = "4.1", features = ["derive", "env"], optional = true } [dev-dependencies] rustc_version = "0.4.0"