macro comfy_include_dir_macros

The procedural macro used by include_dir

1 unstable release

0.7.3 Sep 24, 2023
Download history 19/week @ 2024-10-08 61/week @ 2024-10-15 55/week @ 2024-10-22 74/week @ 2024-10-29 53/week @ 2024-11-05 28/week @ 2024-11-12 50/week @ 2024-11-19 89/week @ 2024-11-26 84/week @ 2024-12-03 146/week @ 2024-12-10 81/week @ 2024-12-17 17/week @ 2024-12-24 44/week @ 2024-12-31 85/week @ 2025-01-07 127/week @ 2025-01-14 102/week @ 2025-01-21

358 downloads per month
Used in 5 crates (via comfy_include_dir)

MIT license

12KB
301 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?

Dependencies

~75KB