rupass 0.1.2

This is a command line and geek style password manager written in Rust.
1
2
3
4
5
6
7
8
fn main() {
    prost_build::Config::new()
        .out_dir("src/pb")
        .type_attribute(".", "#[derive(Eq, Hash)]")
        .compile_protos(&["pwd.proto"], &["proto"])

        .unwrap();
}