This library is aimed to provide CORS functionality to Gotham.rs servers.
Currently this is a very simple implementation with limited customisability.
Requires rust 1.26 or later.
Usage: ```rust extern crate gotham; extern crate gothamcorsmiddleware;
use gotham::pipeline::newpipeline; use gothamcorsmiddleware::CORSMiddleware; use gotham::pipeline::single::singlepipeline; use gotham::router::builder::*; use gotham::router::Router;
pub fn router() -> Router { let (chain, pipeline) = singlepipeline( newpipeline() .add(CORSMiddleware::default()) .build(), );
build_router(chain, pipeline, |route| {
// Routes
}
} ```
Roadmap: - [x] Add integration tests - [x] Add builder that would allow header customisation - [x] Add documentation - [ ] See how next version of Gotham requires changes to middeware structure