PSeitz / lz4_flex

Fastest pure Rust implementation of LZ4 compression/decompression.
MIT License
460 stars 31 forks source link

safe-decode no longer `no_std` compatible #30

Closed CraftSpider closed 3 years ago

CraftSpider commented 3 years ago

As of a recent update, using the feature safe-decode causes the crate to fail to compile in no_std environments. There are two reported errors:

PSeitz commented 3 years ago

Thanks for the the bug report, it is fixed with https://github.com/PSeitz/lz4_flex/pull/32. I also added a gh action step to ensure it won't break again.

PSeitz commented 3 years ago

Released with 0.9.1, can you confirm it works?

CraftSpider commented 3 years ago

Confirmed, everything is building again, thanks for the quick response.