-
Notifications
You must be signed in to change notification settings - Fork 511
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
Ability to prevent linking of dlls #2640
Comments
That's not something the You could experiment with setting Line 4 in 101467c
Alternatively, you might want to consider using the |
enabling |
|
Im not sure what you mean by "the MSRV can handle it". According to rust-lang/rust#58713, it looks like the feature was stabilized for 1.65, so isn't it just a matter of when you decide to increase the msrv to >= 1.65? What is the policy for increasing msrv in Aside: It looks like the msrvs listed in the docs don't match with the ones defined in the cargo.tomls |
I just bumped it to 1.56.0 - it will likely be a while until it gets bumped to 1.65, but your scenario is a little different so I wouldn't worry about that. Yes, I need to update the docs. |
I have updated the docs at https://kennykerr.ca/ |
Suggestion
I wanted to be able to only import NTSTATUS values from this crate, but doing so pulls in many dlls. The way in which the dlls are imported actually breaks my build because it forces some of my own ffi bindings to try to link against
ntdll
instead of my own dlls.The text was updated successfully, but these errors were encountered: