Skip to content

Commit cb4c552

Browse files
committed
Pin the dependency on async-executor in the integration-tests crate to version 1.5.1.
Normally this is a transitive dependency of rstest with no direct dependency from integration-tests itself. But one of intermediate dependencies did not pin it, so it was silently upgraded to 1.5.4, which raised the MSRV from 1.59.0 to 1.61.0. Thus the integration tests could no longer run on our MSRV of 1.59.0. This change pins the transitive dependency so that the integration tests compile again under our MSRV.
1 parent 368d818 commit cb4c552

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

integration_tests/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ anyhow = "1"
3333
indoc = "2"
3434
rstest = "0.13.0"
3535
tokio = { version = "=1.29.1", features = ["time", "macros", "rt"] }
36+
async-executor = { version = "=1.5.1" }
3637

3738
[[bin]]
3839
name = "integration_tests"

0 commit comments

Comments
 (0)