tweedegolf / sequential-storage

A crate for storing data in flash memory with minimal need for erasing pages
Apache License 2.0
87 stars 8 forks source link

No Std Feature #27

Closed felixfaisal closed 5 months ago

felixfaisal commented 5 months ago

Hi Tweedegolf team, I recently came across your article in This Week in Rust, I defintely want to try out this crate in my test network or production(if testing does not break!). I was wondering if you could provide a no_std version, it would be specifically helpful for what I'm working on.

diondokter commented 5 months ago

Hi there!

The whole crate is no_std. It's the opposite of what you think. There's no std feature to turn std on 😄

So you're good to go

felixfaisal commented 5 months ago

The whole crate is no_std. It's the opposite of what you think. There's no std feature to turn std on 😄

You are awesome!