string_to_static/
lib.rs

1pub fn parse(value: String) -> &'static str {
2    let value: &'static str = Box::leak(value.into_boxed_str());
3    value
4}