-
Notifications
You must be signed in to change notification settings - Fork 17
Support no_std #10
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
Comments
This requires removing use of |
Good first step would be to just support |
This allows botan-sys to be no_std by default. The wrapper crate relies on Vec, String, CString and may prove difficult to convert to no_std, not really sure. See #10
Think the trick is to implement |
FFI CString requires |
Some hope of progress in rust-lang/rust#46736 Alternatively can DIY it ala https://gitlab.com/worr/rcstring/blob/master/src/lib.rs |
We can get the C types via
libc
, which supportsno_std
.The text was updated successfully, but these errors were encountered: