Skip to content

Commit

Permalink
Update Cargo.lock (#1256)
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov authored Nov 15, 2023
1 parent 7ea12d3 commit c61f066
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 32 deletions.
63 changes: 33 additions & 30 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.2.0", default-features = false, features = ["std"] }

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

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

[features]
alloc = []
Expand Down
3 changes: 3 additions & 0 deletions tls_codec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ serde = { version = "1.0.184", features = ["derive"], optional = true }

[dev-dependencies]
clap = "=4.3.23" # pinned to preserve MSRV
clap_lex = "=0.5.0" # pinned to preserve MSRV
anstyle = "=1.0.2" # pinned to preserve MSRV
anstyle-parse = "=0.2.1" # pinned to preserve MSRV
criterion = { version = "0.5", default-features = false }
regex = "1.8"

Expand Down

0 comments on commit c61f066

Please sign in to comment.