caniuse-rs 0.4.1

A command line client for caniuse.com, written in Rust.
1
2
3
4
5
6
7
8
use std::env;

lazy_static! {
    pub static ref CACHE_PATH: String = match env::var("HOME") {
        Ok(home) => format!("{}/.cache/caniuse-rs/data.json", home),
        Err(_) => String::from("/usr/local/share/caniuse-rs/data.json"),
    };
}