From 96f2e7e657938dcc34b246fb554ef54def913436 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Aug 2024 14:45:35 +0000 Subject: [PATCH] build(deps): update windows-sys requirement from 0.52 to 0.59 (#290) * build(deps): update windows-sys requirement from 0.52 to 0.59 Updates the requirements on [windows-sys](https://github.com/microsoft/windows-rs) to permit the latest version. - [Release notes](https://github.com/microsoft/windows-rs/releases) - [Commits](https://github.com/microsoft/windows-rs/compare/0.52.0...0.59.0) --- updated-dependencies: - dependency-name: windows-sys dependency-type: direct:production ... Signed-off-by: dependabot[bot] * update cargo-deny requirements --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Steven Allen --- Cargo.toml | 2 +- deny.toml | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 315745aa1..7ab66b3a1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ once_cell = { version = "1.19.0", default-features = false, features = ["std"] } rustix = { version = "0.38.31", features = ["fs"] } [target.'cfg(windows)'.dependencies.windows-sys] -version = "0.52" +version = "0.59" features = [ "Win32_Storage_FileSystem", "Win32_Foundation", diff --git a/deny.toml b/deny.toml index b70b9ac9e..a2cf7ed7f 100644 --- a/deny.toml +++ b/deny.toml @@ -15,10 +15,8 @@ allow = [] deny = [] multiple-versions = "deny" skip = [ - # Transitive dependency of both redox_syscall and rustix (rustix has newer). - # - # Only one version of bitflags ultimately gets compiled in due to OS-based feature flags in tempfile. - { name = "bitflags" }, + # Dependency of this crate and and rustix (rustix has older). We only use one at a time. + { name = "windows-sys" }, ] skip-tree = [] wildcards = "deny"