Allow windows-sys versions >=0.59, <=0.61, delete Cargo.lock#32
Allow windows-sys versions >=0.59, <=0.61, delete Cargo.lock#32ColinFinck wants to merge 1 commit intotesuji:mainfrom
windows-sys versions >=0.59, <=0.61, delete Cargo.lock#32Conversation
5427ba9 to
e2a04ee
Compare
windows-sys to 0.61windows-sys versions >=0.59, <=0.61, delete Cargo.lock
|
@tesuji: Thanks for quickly having a look! I checked this once more and came to the conclusion that it's better to use the version range ">=0.59, <=0.61" for However, for that to work, I needed to remove the |
tesuji
left a comment
There was a problem hiding this comment.
This suggestion was deprecated and removed more than one year ago.
Did >=0.59, <=0.61 make the lock file hard to be resolved?
|
Merged in 5ca22fd and published in v1.4.0. Thank you for your contribution. |
This PR is the result of
cargo upgrade --incompatible --pinned --ignore-rust-version --recursive.In particular,
windows-sys0.61.x consistently usesraw-dylibfor importing APIs from Windows DLLs. This makes a huge difference when using non-MSVC toolchains to build Windows binaries, e.g.x86_64-pc-windows-gnullvm.CC @tesuji