This is a crate which provides macros static_resources_initialize!
and static_response!
to static include files from your Rust project and make them be the HTTP response sources quickly.
```rust
extern crate rocket; extern crate crc; extern crate mime_guess;
staticresourcesinitialize!( "favicon", "included-static-resources/favicon.ico", "favicon-png", "included-static-resources/favicon-16.png" );
use rocket::response::Response;
fn favicon() -> Response<'static> { static_response!("favicon") }
fn faviconpng() -> Response<'static> { staticresponse!("favicon-png") } ```