-
-
Notifications
You must be signed in to change notification settings - Fork 508
Consider being #![no-std]
(and having a default std
feature).
#221
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
Please note that from what I've picked up, having a Cargo feature that conditionally activates Here's a Reddit discussion I found on the topic: https://www.reddit.com/r/rust/comments/52owe0/slog_supports_no_std_should_you_opt_into_stdlib/ |
It seems that some of our dependencies still use std. In particular the |
#![no-std]
(and having a default std
feature).
Hi. Any new developments on this? |
@tekjar It seems the 0.2 version of |
I've made the necessary on that PR so most of
#[no_mangle]
pub fn alga_cos_f32(data: f32) -> f32 {
...
}
#[no_mangle]
pub fn alga_sin_f32(data: f32) -> f32 {
...
} This works that way so the user still has a chance to benefit from quaternions, rotations, etc. even with Right now I can't merge this PR though since it depends on the version 0.2 of |
Wow that was super quick. Thanks a lot :). |
Alright, this is now published on the version 0.15. A page has been added to the user guide to provide some details. |
See the suggestion on reddit.
This would be particularly useful for embedded applications.
The text was updated successfully, but these errors were encountered: