#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

#1463 in Filesystem

Download history 1495/week @ 2024-03-14 1390/week @ 2024-03-21 1573/week @ 2024-03-28 1192/week @ 2024-04-04 1397/week @ 2024-04-11 1477/week @ 2024-04-18 1531/week @ 2024-04-25 998/week @ 2024-05-02 1407/week @ 2024-05-09 844/week @ 2024-05-16 674/week @ 2024-05-23 799/week @ 2024-05-30 833/week @ 2024-06-06 1040/week @ 2024-06-13 1484/week @ 2024-06-20 921/week @ 2024-06-27

4,414 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

~1–8MB
~58K SLoC