Closed schell closed 3 years ago
Or maybe there's a way to turn off the compression feature? My application doesn't need incredibly large maps, but the other features seem like a grab bag of goodies that I'd like.
@indiv0 recently contributed a new compression backend called "snappy" that is WASM compatible (pure rust). You just need to specify:
[dependencies.building-blocks]
version = 0.3
no-default-features = true
features = ["snappy", $ETC]
I'll should mention this in the README.
First off - thank you for this crate!
When building for WASM I run into the following error:
My guess is that we would have to replace the
lz4-sys
crate with pure Rust implementation?