stanislav-tkach / os_info

Rust library to detect the operating system type
MIT License
175 stars 52 forks source link

deps: Move from winapi to windows-sys #341

Closed poliorcetics closed 1 year ago

poliorcetics commented 1 year ago

winapi is in maintenance mode and the new blessed way to access Windows APIs are the windows and windows-sys crates. I don't think any types of winapi were exposed in the public API so I used windows-sys since it has much faster compile times.

stanislav-tkach commented 1 year ago

Can you please also fix the bitness function?

poliorcetics commented 1 year ago

Should be fixed :)

stanislav-tkach commented 1 year ago

Thanks!