We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
I think #1688 broke semver. Updating rust-mbedtls from using bindgen@0.52.0to ``bindgen@0.53.0` I'm getting a ton of errors like:
rust-mbedtls
bindgen@0.52.0
error[E0308]: mismatched types --> mbedtls/src/x509/csr.rs:196:22 | 196 | Some(F::call), | ^^^^^^^ expected `u64`, found `usize` | = note: expected fn pointer `unsafe extern "C" fn(_, _, u64) -> _` found fn item `unsafe extern "C" fn(_, _, usize) -> _ {<F as rng::RngCallback>::call}`
Possibly the culprit is #1688?
Not sure what can be done at this time, but yeah, upgrading bindgen is harder than it could be.
bindgen
The text was updated successfully, but these errors were encountered:
It didn't. See https://semver.org/.
Major version zero (0.y.z) is for initial development. Anything MAY change at any time. The public API SHOULD NOT be considered stable.
Sorry, something went wrong.
Yes, plus fwiw, you may want size_t_is_usize=true to restore the previous behavior.
size_t_is_usize=true
Right, which was introduced in 0.53.0 if I’m not mistaken?
No branches or pull requests
I think #1688 broke semver. Updating
rust-mbedtls
from usingbindgen@0.52.0
to ``bindgen@0.53.0` I'm getting a ton of errors like:Possibly the culprit is #1688?
Not sure what can be done at this time, but yeah, upgrading
bindgen
is harder than it could be.The text was updated successfully, but these errors were encountered: