actix-embed 0.1.0

Provides embedded files to actix.
Documentation

actix-embed

GitHub Build Crates.io Docs.rs

Serve embedded file with actix.

use actix_web::App;
use actix_embed::Embed;
use rust_embed::RustEmbed;

#[derive(RustEmbed)]
#[folder = "testdata/"]
struct Assets;

let app = App::new()
    .service(Embed::new("/static", &Assets));