1个不稳定版本
0.1.0 | 2023年4月28日 |
---|
#89 in #embedding
22 每月下载量
用于 embeddy
5KB
62 行
Embeddy
最小意见的资源嵌入
文件相对于Cargo.toml文件加载
示例用法
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");
}
依赖
~0.4–8MB
~60K SLoC