diff --git a/Cargo.lock b/Cargo.lock index 4e4a4aa2..ee03b4cc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -144,7 +144,7 @@ dependencies = [ name = "anstyle-query" version = "1.1.4" dependencies = [ - "windows-sys 0.60.2", + "windows-sys 0.61.2", ] [[package]] @@ -214,7 +214,7 @@ dependencies = [ "anstyle 1.0.13", "lexopt", "once_cell_polyfill", - "windows-sys 0.60.2", + "windows-sys 0.61.2", ] [[package]] @@ -1135,9 +1135,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windows-link" -version = "0.2.0" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" [[package]] name = "windows-sys" @@ -1166,6 +1166,15 @@ dependencies = [ "windows-targets 0.53.4", ] +[[package]] +name = "windows-sys" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" +dependencies = [ + "windows-link", +] + [[package]] name = "windows-targets" version = "0.48.5" diff --git a/Cargo.toml b/Cargo.toml index 2136ceeb..08b8d5ff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ resolver = "2" repository = "https://github.com/rust-cli/anstyle.git" license = "MIT OR Apache-2.0" edition = "2021" -rust-version = "1.66.0" # MSRV +rust-version = "1.71.0" # MSRV include = [ "build.rs", "src/**/*", diff --git a/crates/anstyle-query/Cargo.toml b/crates/anstyle-query/Cargo.toml index 586a9589..71c561cf 100644 --- a/crates/anstyle-query/Cargo.toml +++ b/crates/anstyle-query/Cargo.toml @@ -24,7 +24,7 @@ pre-release-replacements = [ ] [target.'cfg(windows)'.dependencies] -windows-sys = { version = "0.60.2", features = ["Win32_System_Console", "Win32_Foundation"] } +windows-sys = { version = "0.61.2", features = ["Win32_System_Console", "Win32_Foundation"] } [lints] workspace = true diff --git a/crates/anstyle-wincon/Cargo.toml b/crates/anstyle-wincon/Cargo.toml index 005826ae..d88428e3 100644 --- a/crates/anstyle-wincon/Cargo.toml +++ b/crates/anstyle-wincon/Cargo.toml @@ -31,7 +31,7 @@ anstyle = { version = "1.0.0", path = "../anstyle" } lexopt = "0.3.1" [target.'cfg(windows)'.dependencies] -windows-sys = { version = "0.60.2", features = ["Win32_System_Console", "Win32_Foundation"] } +windows-sys = { version = "0.61.2", features = ["Win32_System_Console", "Win32_Foundation"] } once_cell_polyfill = "1.56.0" [lints]