bitwarden-autotype 0.1.6

The missing desktop-autotype for Bitwarden.
1
2
3
4
5
6
7
8
fn main() {
    if cfg!(target_os = "windows") {
        let mut res = winres::WindowsResource::new();
        res.set_icon("assets/icon.ico");
        res.set_language(0x0009);
        res.compile().unwrap();
    }
}