1 个不稳定版本

0.1.0 2023 年 2 月 16 日

#41#file-metadata

Download history 30/week @ 2024-03-13 55/week @ 2024-03-20 47/week @ 2024-03-27 80/week @ 2024-04-03 50/week @ 2024-04-10 32/week @ 2024-04-17 15/week @ 2024-04-24 8/week @ 2024-05-01 30/week @ 2024-05-08 38/week @ 2024-05-15 39/week @ 2024-05-22 39/week @ 2024-05-29 94/week @ 2024-06-05 66/week @ 2024-06-12 60/week @ 2024-06-19 25/week @ 2024-06-26

253 每月下载量
include_directory 中使用

MIT 许可证

12KB
283

include_directory

Continuous Integration license Crates.io Docs.rs

include_str!() 和 include_bytes!() 宏的演进,可以将整个目录树嵌入到您的二进制文件中。

这是 include_dir crate 的一个分支,它在编译时收集文件的 mimetype,运行时可以访问。

渲染文档

入门

include_directory!() 宏与常规的 include_str!()include_bytes!() 宏非常相似。您向宏传递一个文件路径,并将返回值赋给某个 static 变量。

use include_directory::{include_directory, Dir};

static PROJECT_DIR: Dir = include_directory!("$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 get the mimetype by doing
let mimetype = lib_rs.mimetype();

// 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 功能)
  • 在编译时收集文件的 mimetype
  • 文件元数据(需要 metadata 功能)

待办事项列表

  • 压缩?

lib.rs:

include_directory 的实现细节。

您可能不想直接使用这个 crate。

依赖关系

~225–305KB