1 unstable release

0.1.0 Apr 28, 2023

#132 in #embedding

Download history 2/week @ 2024-11-20 2/week @ 2024-11-27 10/week @ 2024-12-04 14/week @ 2024-12-11 1/week @ 2024-12-18 1/week @ 2025-01-08 9/week @ 2025-01-15 9/week @ 2025-02-05 25/week @ 2025-02-12 19/week @ 2025-02-19 6/week @ 2025-02-26

59 downloads per month
Used in embeddy

MIT license

5KB
62 lines

Embeddy

License Cargo Version Cargo Downloads

Minimal opinionated resource embedding

Files are loaded relative to the Cargo.toml file

Example Usage

use embeddy::Embedded;

/// Contains all the files stored in the "test" folder 
/// use the [`Embedded::get`] method to access the folders
#[derive(Embedded)]
#[folder = "test"]
struct MyResources;

fn main() {
    let file: Option<&'static [u8]> = MyResources::get("test.txt");
    let nested_file: Option<&'static [u8]> = MyResources::get("sub/test.txt");
}

Dependencies

~0.3–7MB
~48K SLoC