| Crates.io | include-blob |
| lib.rs | include-blob |
| version | 1.0.1 |
| created_at | 2023-01-24 20:56:11.334148+00 |
| updated_at | 2025-05-12 19:13:59.794479+00 |
| description | Include large binary files in an application without the compile time cost of `include_bytes!` |
| homepage | |
| repository | https://github.com/SludgePhD/include-blob |
| max_upload_size | |
| id | 766926 |
| size | 15,644 |
include-blobinclude-blob is a small crate that provides a replacement for
include_bytes! that does not have the same severe impact on compile times
when used with large files (several MB).
It works by pre-processing the files to be included in a build script, bundling them into static libraries, and telling Cargo to link against them.