Skip to content

Commit

Permalink
Pin proptest
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov committed Nov 15, 2023
1 parent 9ca328e commit 01ed410
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 7 deletions.
17 changes: 12 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion base32ct/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ rust-version = "1.60"

[dev-dependencies]
base32 = "0.4"
proptest = "1"
# pinned to preserve MSRV
proptest = { version = "=1.3.1", default-features = false, features = ["std"] }

[features]
alloc = []
Expand Down
4 changes: 3 additions & 1 deletion base64ct/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ rust-version = "1.60"

[dev-dependencies]
base64 = "0.21"
proptest = { version = "1", default-features = false, features = ["std"] }
clap = "=4.3.23"
# pinned to preserve MSRV
proptest = { version = "=1.3.1", default-features = false, features = ["std"] }

[features]
alloc = []
Expand Down

0 comments on commit 01ed410

Please sign in to comment.