rypt 0.8.0

Versatile standalone command-line encryption tool
Documentation
1
2
3
4
5
6
7
8
use failure::Fallible;

fn main() -> Fallible<()> {
    // Compile protobufs.
    prost_build::compile_protos(&["src/proto/header.proto"], &["src/proto/"]).unwrap();

    Ok(())
}