You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit adds two new features: "std" (which is enabled by default)
and "libm". When "std" is enabled, floating point intrinsics are used
from libstd. When "libm" is enabled, it brings in the pure Rust libm
implementation to handle floating point instrinsics in software mode.
By disabling the "std" feature and enabling "libm", this crate can be
effectively used on no_std platforms, like embedded systems.
This is a breaking change, as it adds an "std" default feature that,
when disabled without enabling "libm", causes a compile error. Users who
are currently using zeno with "default-features = false" without
preparation will have their compilation break.
Rel: dfrg/swash#4
Signed-off-by: John Nunley <[email protected]>
0 commit comments