serve_embed

Serve embedded file with axum

```rust

[derive(rust_embed::RustEmbed)]

[folder = "target_folder"]

struct EmbedFiles;

let addr: std::net::SocketAddr = "127.0.0.1:8080".parse().unwrap(); let service = serveembed::ServeEmbed::::default().appendindexhtmlondirectories(true); let app = axum::Router::new().fallbackservice(service); axum::Server::bind(&addr).serve(app.intomakeservice()).await.unwrap(); ```

Please check #example/hello.rs for the complete, working example.