19个版本

0.7.4 2024年6月17日
0.7.3 2022年10月16日
0.7.2 2021年12月6日
0.7.1 2021年11月19日
0.1.3 2017年6月10日

#12开发工具

Download history 154732/week @ 2024-05-03 156967/week @ 2024-05-10 187020/week @ 2024-05-17 189267/week @ 2024-05-24 203445/week @ 2024-05-31 211012/week @ 2024-06-07 207411/week @ 2024-06-14 219680/week @ 2024-06-21 187256/week @ 2024-06-28 166205/week @ 2024-07-05 176556/week @ 2024-07-12 171865/week @ 2024-07-19 178318/week @ 2024-07-26 179231/week @ 2024-08-02 195512/week @ 2024-08-09 178088/week @ 2024-08-16

764,686 每月下载量
1,101 个包中(293个直接使用) 使用

MIT 许可证

18KB
263

include_dir

Continuous Integration license Crates.io Docs.rs

include_str!()include_bytes!() 宏嵌入整个目录树到二进制文件的演变。

渲染文档

入门

include_dir!() 宏的工作方式与普通的 include_str!()include_bytes!() 宏非常相似。您将文件路径传递给宏,并将返回值赋给某个 static 变量。

use include_dir::{include_dir, Dir};

static PROJECT_DIR: Dir = include_dir!("$CARGO_MANIFEST_DIR");

// of course, you can retrieve a file by its full path
let lib_rs = PROJECT_DIR.get_file("src/lib.rs").unwrap();

// you can also inspect the file's contents
let body = lib_rs.contents_utf8().unwrap();
assert!(body.contains("SOME_INTERESTING_STRING"));

// you can search for files (and directories) using glob patterns
#[cfg(feature = "glob")]
{
    let glob = "**/*.rs";
    for entry in PROJECT_DIR.find(glob).unwrap() {
        println!("Found {}", entry.path().display());
    }
}

特性

  • 在编译时将目录树嵌入到您的二进制文件中
  • 在嵌入的目录中查找文件
  • 使用glob模式搜索文件(需要 globs 特性)
  • 文件元数据(需要 metadata 特性)

待办事项列表

  • 压缩?

依赖项

~90KB