nio-client 0.1.2

Client for nio authentication and authorization.
Documentation
1
2
3
4
5
6
7
fn main() -> Result<(), Box<dyn std::error::Error>> {
    println!("cargo:rerun-if-changed=proto/iam.proto");
    tonic_build::configure()
        .build_client(true)
        .compile_protos(&["proto/iam.proto"], &["./"])?;
    Ok(())
}