#directory-tree #directory #build #compile-time #tree #static #include

build includedir_codegen

Include a whole directory tree at compile time! - Compile time part

7 releases (4 breaking)

Uses old Rust 2015

0.6.0 May 27, 2020
0.5.0 Dec 14, 2018
0.4.0 Apr 9, 2018
0.3.0 Mar 12, 2018
0.2.1 Feb 20, 2016

#1363 in Filesystem

Download history 2161/week @ 2023-12-13 1704/week @ 2023-12-20 1091/week @ 2023-12-27 1677/week @ 2024-01-03 1726/week @ 2024-01-10 1543/week @ 2024-01-17 2185/week @ 2024-01-24 1684/week @ 2024-01-31 1039/week @ 2024-02-07 1264/week @ 2024-02-14 1183/week @ 2024-02-21 1848/week @ 2024-02-28 1215/week @ 2024-03-06 1417/week @ 2024-03-13 1471/week @ 2024-03-20 1398/week @ 2024-03-27

5,820 downloads per month
Used in 71 crates (13 directly)

BSD-3-Clause

8KB
113 lines

includedir

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

Include a directory in your Rust binary, e.g. static files for your web server or assets for your game.

Features

  • Automatically compile data into binary
  • Use rust-phf for efficient lookup
  • Wrapping API around the phf map, to abstract away additional features
  • Compression, with optional crate "flate2"
  • Reading from source files for debug builds

Example

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"))
}

Dependencies

~1MB
~20K SLoC