From ad76373602de11e69edfcf65e0a053189fcc79b6 Mon Sep 17 00:00:00 2001 From: Matthew Russo Date: Sun, 15 Dec 2024 11:51:19 -0800 Subject: [PATCH] [fix] update compiletest to pull in proptest --- proptest-derive/tests/compiletest.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proptest-derive/tests/compiletest.rs b/proptest-derive/tests/compiletest.rs index 11357ee0..8d51be21 100644 --- a/proptest-derive/tests/compiletest.rs +++ b/proptest-derive/tests/compiletest.rs @@ -15,7 +15,7 @@ fn run_mode(src: &'static str, mode: &'static str) { config.mode = mode.parse().expect("invalid mode"); config.target_rustcflags = - Some("-L ../target/debug/deps --edition=2018".to_owned()); + Some("-L ../target/debug/deps --extern proptest --edition=2021".to_owned()); if let Ok(name) = env::var("TESTNAME") { config.filters = vec![name]; }