phf_macros 0.7.11

Compiler plugin for perfect hash function data structures
docs.rs failed to build phf_macros-0.7.11
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: phf_macros-0.11.2
Compiler plugin defining macros that create PHF data structures. # Example ```rust #![feature(plugin, core)] #![plugin(phf_macros)] extern crate phf; #[derive(Clone)] pub enum Keyword { Loop, Continue, Break, Fn, Extern, } static KEYWORDS: phf::Map<&'static str, Keyword> = phf_map! { "loop" => Keyword::Loop, "continue" => Keyword::Continue, "break" => Keyword::Break, "fn" => Keyword::Fn, "extern" => Keyword::Extern, }; pub fn parse_keyword(keyword: &str) -> Option { KEYWORDS.get(keyword).cloned() } # fn main() {} ```