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"