Bump proptest from 1.3.1 to 1.4.0 (#3198)

* Bump proptest from 1.3.1 to 1.4.0

Bumps [proptest](https://github.com/proptest-rs/proptest) from 1.3.1 to 1.4.0.
- [Release notes](https://github.com/proptest-rs/proptest/releases)
- [Changelog](https://github.com/proptest-rs/proptest/blob/master/CHANGELOG.md)
- [Commits](https://github.com/proptest-rs/proptest/compare/v1.3.1...v1.4.0)

---
updated-dependencies:
- dependency-name: proptest
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update MSRV to 1.65 to match proptest

Rust 1.65 is just over one year old right now.

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Dustin J. Mitchell <djmitche@google.com>
This commit is contained in:
dependabot[bot] 2023-11-13 23:21:54 -05:00 committed by GitHub
parent 41992d4849
commit 1392f55944
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 16 additions and 10 deletions

View file

@ -29,7 +29,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
toolchain: "1.64" # MSRV
toolchain: "1.65" # MSRV
override: true
- uses: actions-rs/cargo@v1.0.3
@ -98,7 +98,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
toolchain: "1.64" # MSRV
toolchain: "1.65" # MSRV
override: true
- uses: actions-rs/cargo@v1.0.3

View file

@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
rust:
- "1.64" # MSRV
- "1.65" # MSRV
- "stable"
os:
- ubuntu-latest

16
Cargo.lock generated
View file

@ -1241,9 +1241,9 @@ dependencies = [
[[package]]
name = "proptest"
version = "1.3.1"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c003ac8c77cb07bb74f5f198bce836a689bcd5a42574612bf14d17bfd08c20e"
checksum = "31b476131c3c86cb68032fdc5cb6d5a1045e3e42d96b69fa599fd77701e1f5bf"
dependencies = [
"bit-set",
"bit-vec",
@ -1253,7 +1253,7 @@ dependencies = [
"rand",
"rand_chacha",
"rand_xorshift",
"regex-syntax",
"regex-syntax 0.8.2",
"rusty-fork",
"tempfile",
"unarray",
@ -1340,7 +1340,7 @@ dependencies = [
"aho-corasick",
"memchr",
"regex-automata",
"regex-syntax",
"regex-syntax 0.7.5",
]
[[package]]
@ -1351,7 +1351,7 @@ checksum = "59b23e92ee4318893fa3fe3e6fb365258efbfe6ac6ab30f090cdcbb7aa37efa9"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
"regex-syntax 0.7.5",
]
[[package]]
@ -1360,6 +1360,12 @@ version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da"
[[package]]
name = "regex-syntax"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
[[package]]
name = "ring"
version = "0.16.20"

View file

@ -29,7 +29,7 @@ lazy_static = "1"
libc = "0.2.136"
log = "^0.4.17"
pretty_assertions = "1"
proptest = "^1.3.1"
proptest = "^1.4.0"
ring = "0.16"
rstest = "0.17"
rusqlite = { version = "0.29", features = ["bundled"] }

View file

@ -41,7 +41,7 @@ for more information about the design and usage of the tool.
# Minimum Supported Rust Version (MSRV)
This crate supports Rust version 1.64 and higher.
This crate supports Rust version 1.65 and higher.
*/