sarah-ek / faer-rs

Linear algebra foundation for the Rust programming language
https://faer-rs.github.io
MIT License
1.75k stars 56 forks source link

no-std requires dyn-stack without default-features #118

Closed bernhard-musch closed 4 months ago

bernhard-musch commented 4 months ago

Trying to include faer in a no-std project produced errors. The reason was that faer includes dyn-stack, which in turn includes the standard library by default.

codecov[bot] commented 4 months ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 85.92%. Comparing base (1d232be) to head (3ff2a17).

Additional details and impacted files ```diff @@ Coverage Diff @@ ## main #118 +/- ## ======================================= Coverage 85.91% 85.92% ======================================= Files 126 126 Lines 90003 90003 ======================================= + Hits 77329 77331 +2 + Misses 12674 12672 -2 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

sarah-ek commented 4 months ago

thanks for finding this!