Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
max-sixty committed Aug 1, 2024
1 parent dc24480 commit 86d8f4e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion cargo-insta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ syn = { version = "=2.0.8", features = ["full", "visit", "extra-traits"] }
ignore = "0.4.17"
uuid = { version = "1.0.0", features = ["v4"] }
tempfile = "3.5.0"
clap = { workspace=true}
# Not yet supported in our MSRV of 1.60.0
# clap = { workspace=true }
clap = {version = "4.0", features = ["derive", "env"]}

[dev-dependencies]
walkdir = "2.3.1"
6 changes: 4 additions & 2 deletions insta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = "Apache-2.0"
authors = ["Armin Ronacher <armin.ronacher@active-4.com>"]
description = "A snapshot testing library for Rust"
edition = "2018"
rust-version = "1.57.0"
rust-version = "1.60.0"
homepage = "https://insta.rs/"
repository = "https://github.com/mitsuhiko/insta"
keywords = ["snapshot", "testing", "jest", "approval"]
Expand Down Expand Up @@ -61,7 +61,9 @@ regex = { version = "1.6.0", default-features = false, optional = true, features
serde = { version = "1.0.117", optional = true }
linked-hash-map = "0.5.6"
lazy_static = "1.4.0"
clap = { workspace=true, optional = true }
# Not yet supported in our MSRV of 1.60.0
# clap = { workspace=true, optional = true }
clap = {version = "4.0", features = ["derive", "env"], optional = true}

[dev-dependencies]
rustc_version = "0.4.0"
Expand Down

0 comments on commit 86d8f4e

Please sign in to comment.