-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
minor new release #29
Comments
Hi @king-11,
which one? Thanks, Simon |
Most of the crates are using windows-sys |
In version pub type HANDLE = *mut c_void; // 0.59.0 [1]
pub type HANDLE = isize; // 0.52.0 [2] This is backwards incompatible with this line in let result = Shell::SHGetKnownFolderPath(
&folder_id,
0,
- Win32::Foundation::HANDLE::default(),
+ std::ptr::null_mut(),
&mut path_ptr
); Upgrading to support Worth keeping an eye on this regarding what the rest of the ecosystem is using, but unsure how we should proceed. |
Yeah I think there should be some version that supports a larger set of versions before proceeding onto a bump that would break backwards compatibility. |
@soc any thoughts how can be proceed to be in sync with the ecosystem referring the latest tokio Cargo.toml the max version is 0.52.0 |
it has been 8 months since the last release the window-sys package change might be useful further upstream allowing users to fetch only one dependency so if it makes sense can we have a new release?
The text was updated successfully, but these errors were encountered: