-
Notifications
You must be signed in to change notification settings - Fork 497
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
Add windows-strings
crate
#3125
Conversation
Looks like the readme tests were accidentally disabled - cf9b35b turns them back on. |
This whole non-Windows appeasement thing is getting old. It's making it too difficult to support Windows, which is the whole point of this project. 🤪 Anyway, the latest version retains basic Linux compatibility for |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is a good approach, not just for windows-
crates but also for the windows ecosystem in general.
This update pulls out the Windows string types from the
windows-core
crate and makes them available directly without a dependency on thewindows
orwindows-core
crates. This will help to make these string types more accessible to library crates such aswindows-registry
(#3121).These types are still included in the
windows-core
andwindows
crates as a dependency so it should not affect existing code too much.