From a51d64fcd4256540ed8ad57a42db27db8dfe3671 Mon Sep 17 00:00:00 2001 From: Joshua Liebow-Feeser Date: Tue, 6 Aug 2024 12:08:13 -0700 Subject: [PATCH] [testutil] Pin winapi-util to 0.1.8 (#1573) --- testutil/Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/testutil/Cargo.toml b/testutil/Cargo.toml index cc3b73d5a2..c5425455ee 100644 --- a/testutil/Cargo.toml +++ b/testutil/Cargo.toml @@ -22,3 +22,7 @@ rustc_version = "0.4.0" # than our MSRV. time = { version = "=0.3.0", default-features = false, features = ["formatting", "macros", "parsing"] } toml = "0.5.11" +# Pin to 0.1.8 because 0.1.9 takes a dependency on windows-sys 0.59.0, which +# in turn requires a Rust version more recent than our MSRV. By contrast, +# 0.1.8 depends on windows-sys 0.52.0, which works with our MSRV. +winapi-util = "=0.1.8"