You just can't beat this feature.
use ::phf::{Map, phf_map};
static MAP: Map<char, &'static str> = phf_map! {
'a' => "apple",
'b' => "bear",
'c' => "cat",
};
Makes it so easy to create a very fast constant static hashmap at build time. You just can't beat it.. you just can't.