//! This crate provides Mouscache's derive macros.
//!
//! ```rust
//! #[macro_use]
//! extern crate mouscache_derive;
//!
//! #[derive(Cacheable)]
//! struct S;
//!
//! fn main() {}
//! ```
//!
//! Please refer to [mouscache-rs] for how to set this up.
//!
//! [mouscache-rs]: https://github.com/wayk/mouscache-rs
extern crate proc_macro;
extern crate proc_macro2;
extern crate quote;
extern crate syn;