Skip to content

Commit

Permalink
Correct our proptest requirement (#3256)
Browse files Browse the repository at this point in the history
## Motivation

Our code currently doesn't build with `proptest` <1.6, as we rely on
`std::ops::RangeFrom<u128>: proptest::strategy::Strategy`. This is
reflected in our lock file but not our manifest, possibly breaking
builds that depend on our crates.

<!--
Briefly describe the goal(s) of this PR.
-->

## Proposal

Update the manifest.

<!--
Summarize the proposed changes and how they address the goal(s) stated
above.
-->

## Test Plan

<!--
Explain how you made sure that the changes are correct and that they
perform as intended.

Please describe testing protocols (CI, manual tests, benchmarks, etc) in
a way that others
can reproduce the results.
-->

## Release Plan

<!--
If this PR targets the `main` branch, **keep the applicable lines** to
indicate if you
recommend the changes to be picked in release branches, SDKs, and
hotfixes.

This generally concerns only bug fixes.

Note that altering the public protocol (e.g. transaction format, WASM
syscalls) or storage
formats requires a new deployment.
-->
- Nothing to do / These changes follow the usual release cycle.

## Links

<!--
Optional section for related PRs, related issues, and other references.

If needed, please create issues to track future improvements and link
them here.
-->
- [reviewer
checklist](https://github.com/linera-io/linera-protocol/blob/main/CONTRIBUTING.md#reviewer-checklist)
  • Loading branch information
Twey authored Feb 6, 2025
1 parent 2362f1f commit d718711
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ prettyplease = "0.2.16"
prometheus = "0.13.3"
proc-macro-error = "1.0.4"
proc-macro2 = "1.0"
proptest = { version = "1.4.0", default-features = false, features = ["alloc"] }
proptest = { version = "1.6.0", default-features = false, features = ["alloc"] }
prost = "0.13.2"
quote = "1.0"
rand = { version = "0.8.5", default-features = false }
Expand Down
29 changes: 22 additions & 7 deletions examples/Cargo.lock

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

0 comments on commit d718711

Please sign in to comment.