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
We might want to evaluate, test and benchmark anise.rs for embedded targets.
It looks like all dependency crates support no_std (flatbuffers and hifitime has a feature flag and memmap2 isn't useful for non-hosted embedded so can be made optional).
The use of std within the (non-flatbuf-generated) crate code is minimal and seems to be easily replaceable with the core equivalent. Further evaluation may be needed for PR #8 when merged
Roadmap :
Replace all uses of std with core when possible
Add a default std feature flag that enables all std-based features
Write a few test-cases and benchmarks for embedded targets
The text was updated successfully, but these errors were encountered:
We might want to evaluate, test and benchmark anise.rs for embedded targets.
It looks like all dependency crates support
no_std
(flatbuffers and hifitime has a feature flag and memmap2 isn't useful for non-hosted embedded so can be made optional).The use of
std
within the (non-flatbuf-generated) crate code is minimal and seems to be easily replaceable with thecore
equivalent. Further evaluation may be needed for PR #8 when mergedRoadmap :
std
feature flag that enables allstd
-based featuresThe text was updated successfully, but these errors were encountered: