2 releases
0.1.1 | Apr 28, 2023 |
---|---|
0.1.0 | Apr 25, 2023 |
#1115 in Embedded development
31 downloads per month
4KB
Embeddy
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");
}
lib.rs
:
Embedding
To embed a folder simply derive the Embedded
trait on
a struct and set the folder
attribute to the folder path
relative to the project Cargo.toml
use embeddy::Embedded;
#[derive(Embedded)]
#[folder = "test"]
struct MyResources;
fn main() {
let file: Option<&'static [u8]> = MyResources::get("test.txt");
}
Dependencies
~0.3–7MB
~52K SLoC