Closed matthiaskrgr closed 5 years ago
cc @lzutao who updated scopeguard
let _g = scopeguard::guard(token, |h| {
let _ = CloseHandle(*h);
});
perhaps this has to be
let _g = scopeguard::guard(token, |mut h| {
let _ = CloseHandle(*h);
});
or something?
I upgraded
home
to0.4.1
incargo-cache
https://github.com/matthiaskrgr/cargo-cache which caused a CI error / build failure on windows becausehome
failed to build:https://travis-ci.org/matthiaskrgr/cargo-cache/jobs/568579013#L175