includedir
Include a directory in your Rust binary, e.g. static files for your web server or assets for your game.
Features
- [x] Automatically compile data into binary
- [x] Use rust-phf for efficient lookup
- [x] Wrapping API around the phf map, to abstract away additional features
- [x] Compression, with optional crate "flate2"
- [x] Reading from source files for debug builds
- [ ] Tested on non-Linux platforms. Passthrough won't work on Windows, the rest should.
Example
Cargo.toml
[package]
name = "example"
version = "0.1.0"
build = "build.rs"
include = ["data"]
[dependencies]
phf = "0.7.12"
includedir = "0.2.0"
[build-dependencies]
includedir_codegen = "0.2.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;
include!(concat!(env!("OUT_DIR"), "/data.rs"));
fn main() {
println!("{:?}", FILES.get("data/foo"))
}