9 个版本 (5 个重大更改)

使用旧的 Rust 2015

0.6.0 2020年5月27日
0.5.0 2018年12月14日
0.4.0 2018年4月9日
0.3.0 2018年3月12日
0.1.1 2016年2月16日

#943 in 文件系统

Download history 1473/week @ 2024-03-14 1383/week @ 2024-03-21 1575/week @ 2024-03-28 1191/week @ 2024-04-04 1393/week @ 2024-04-11 1482/week @ 2024-04-18 1524/week @ 2024-04-25 993/week @ 2024-05-02 1403/week @ 2024-05-09 834/week @ 2024-05-16 661/week @ 2024-05-23 790/week @ 2024-05-30 835/week @ 2024-06-06 1042/week @ 2024-06-13 1477/week @ 2024-06-20 922/week @ 2024-06-27

4,412 每月下载量
71 crate 中使用 (13 个直接使用)

BSD-3-Clause

6KB
90

includedir

Travis Appveyor Crates.io version docs.rs Crates.io license

在您的 Rust 二进制文件中包含目录,例如您 Web 服务器中的静态文件或游戏资源。

特性

  • 自动将数据编译进二进制文件
  • 使用 rust-phf 进行高效查找
  • 包装 phf 映射的 API,以抽象其他特性
  • 可选的 crate "flate2" 进行压缩
  • 调试构建时从源文件读取

示例

Cargo.toml

[package]
name = "example"
version = "0.1.0"

build = "build.rs"
include = ["data"]

[dependencies]
phf = "0.8.0"
includedir = "0.6.0"

[build-dependencies]
includedir_codegen = "0.6.0"

build.rs

extern crate includedir_codegen;

use includedir_codegen::Compression;

fn main() {
    includedir_codegen::start("FILES")
        .dir("data", Compression::Gzip)
        .build("data.rs")
        .unwrap();
}

src/main.rs

extern crate includedir;
extern crate phf;

use std::env;

include!(concat!(env!("OUT_DIR"), "/data.rs"));

fn main() {
    FILES.set_passthrough(env::var_os("PASSTHROUGH").is_some());

    println!("{:?}", FILES.get("data/foo"))
}

依赖

~415KB