A Quick Tour of Trade-offs Embedding Data in Rust

from blog nickb.dev, | ↗ original
Sometimes it makes sense to ship an application with the necessary data already inside. No need to fetch it from an external source and deal with failure when everything is bundled together. How the data is bundled inside the application is what we’ll be looking at today, specifically in the context of Wasm apps, though lessons learned here...