From 2af5c8b8cf4e08307a7b44a189aac3a2bfad330c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 01:11:34 +0000 Subject: [PATCH] Update compiletest_rs requirement from 0.9 to 0.10 Updates the requirements on [compiletest_rs](https://github.com/laumann/compiletest-rs) to permit the latest version. - [Release notes](https://github.com/laumann/compiletest-rs/releases) - [Commits](https://github.com/laumann/compiletest-rs/compare/v0.9.0...v0.10.2) --- updated-dependencies: - dependency-name: compiletest_rs dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- proptest-derive/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proptest-derive/Cargo.toml b/proptest-derive/Cargo.toml index bfa0cd6b..0462985a 100644 --- a/proptest-derive/Cargo.toml +++ b/proptest-derive/Cargo.toml @@ -27,7 +27,7 @@ proptest = { version = "1.0.0", path = "../proptest" } # features. However, due to # https://github.com/laumann/compiletest-rs/issues/166, the default features of # compiletest-rs fail to compile, but the stable fallback works fine. -compiletest_rs = { version = "0.9", features = ["tmp", "stable"] } +compiletest_rs = { version = "0.10", features = ["tmp", "stable"] } # criterion is used for benchmarks. criterion = "0.5"