4 releases

0.7.3 Oct 16, 2022
0.7.2 Dec 6, 2021
0.7.1 Nov 19, 2021
0.7.0 Nov 14, 2021

#1522 in Filesystem

Download history 98844/week @ 2023-12-13 77594/week @ 2023-12-20 64110/week @ 2023-12-27 102641/week @ 2024-01-03 107510/week @ 2024-01-10 122485/week @ 2024-01-17 116805/week @ 2024-01-24 118327/week @ 2024-01-31 126752/week @ 2024-02-07 121647/week @ 2024-02-14 124467/week @ 2024-02-21 124569/week @ 2024-02-28 119752/week @ 2024-03-06 114202/week @ 2024-03-13 131009/week @ 2024-03-20 99198/week @ 2024-03-27

487,505 downloads per month
Used in 840 crates (via include_dir)

MIT license

11KB
279 lines

include_dir

Continuous Integration license Crates.io Docs.rs

An evolution of the include_str!() and include_bytes!() macros for embedding an entire directory tree into your binary.

Rendered Documentation:

Getting Started

The include_dir!() macro works very similarly to the normal include_str!() and include_bytes!() macros. You pass the macro a file path and assign the returned value to some static variable.

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());
    }
}

Features

  • Embed a directory tree into your binary at compile time
  • Find a file in the embedded directory
  • Search for files using a glob pattern (requires the globs feature)
  • File metadata (requires the metadata feature)

To-Do list:

  • Compression?

lib.rs:

Implementation details of the include_dir.

You probably don't want to use this crate directly.

Dependencies

~83KB