MCPcopy Index your code
hub / github.com/Michael-F-Bryan/include_dir

github.com/Michael-F-Bryan/include_dir @include_dir-v0.7.4

Chat with this repo
repository ↗ · DeepWiki ↗ · release include_dir-v0.7.4 ↗ · + Follow
62 symbols 129 edges 8 files 28 documented · 45% updated 2y ago★ 39422 open issues
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

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?

Core symbols most depended-on inside this repo

path
called by 8
include_dir/src/dir.rs
resolve_path
called by 6
macros/src/lib.rs
entries
called by 6
include_dir/src/dir.rs
get_entry
called by 4
include_dir/src/dir.rs
normalize_path
called by 2
macros/src/lib.rs
parse_identifier
called by 2
macros/src/lib.rs
track_path
called by 2
macros/src/lib.rs
contents
called by 2
include_dir/src/file.rs

Shape

Method 29
Function 26
Class 6
Enum 1

Languages

Rust100%

Modules by API surface

macros/src/lib.rs23 symbols
include_dir/src/dir.rs11 symbols
include_dir/src/file.rs8 symbols
include_dir/tests/integration_test.rs5 symbols
include_dir/src/metadata.rs5 symbols
include_dir/src/dir_entry.rs5 symbols
include_dir/src/globs.rs4 symbols
include_dir/src/lib.rs1 symbols

For agents

$ claude mcp add include_dir \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page