Open wucke13 opened 2 years ago
I think the libm
crate can be used in no_std
environments as it is a pure Rust reimplementation of MUSL's libm.
Yes, further on there is a libm
feature in num
, which can be easily used since num
is a dependency already
@iliekturtles Any chance that you take you fix this?
Currently
sin
andcos
functions are disabled onno_std
. These are common functions which are easily available throughlibm
, so it makes sense to expose them.