Upgrade windows and trash crates (#7259)

This upgrades the `windows` and `trash` crates so we are only compiling
1 version of the `windows` crate ([I recently upgraded the version used
in `trash`](https://github.com/Byron/trash-rs/pull/58)).

I was hoping that this would lead to some decent compile time
improvements, but unfortunately it did not. Compiling 1 version of
`windows` with all the features unified is about as slow as compiling 2
versions with distinct feature sets. Still, might as well upgrade.
This commit is contained in:
Reilly Wood
2022-11-29 13:05:32 -08:00
committed by GitHub
parent cfb0f3961b
commit bdc4bf97a7
2 changed files with 8 additions and 51 deletions

View File

@ -101,7 +101,7 @@ users = "0.11.0"
libc = "0.2"
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies.trash]
version = "2.1.3"
version = "3.0.0"
optional = true
[dependencies.polars]
@ -136,7 +136,7 @@ features = [
]
[target.'cfg(windows)'.dependencies.windows]
version = "0.42.0"
version = "0.43.0"
features = [
"Win32_Foundation",
"Win32_Storage_FileSystem",