diff --git a/color-eyre/tests/theme.rs b/color-eyre/tests/theme.rs index 939b02f..11ee8ca 100644 --- a/color-eyre/tests/theme.rs +++ b/color-eyre/tests/theme.rs @@ -124,6 +124,7 @@ fn test_panic_backwards_compatibility() { .args(["run", "--example", "theme_test_helper"]) .arg("--no-default-features") .args(&features) + .env("RUSTFLAGS", "-Awarnings") .output() .expect("failed to execute process"); let target = String::from_utf8(output.stderr).expect("failed to convert output to `String`"); diff --git a/eyre/Cargo.toml b/eyre/Cargo.toml index 1085cbb..6848126 100644 --- a/eyre/Cargo.toml +++ b/eyre/Cargo.toml @@ -27,7 +27,7 @@ pyo3 = { version = "0.20", optional = true, default-features = false } futures = { version = "0.3", default-features = false } rustversion = "1.0" thiserror = "1.0" -trybuild = { version = "1.0.19", features = ["diff"] } +trybuild = { version = "=1.0.83", features = ["diff"] } backtrace = "0.3.46" anyhow = "1.0.28" syn = { version = "2.0", features = ["full"] }