oxify-authz 0.1.0

ReBAC (Relationship-Based Access Control) authorization engine - Google Zanzibar implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() -> Result<(), Box<dyn std::error::Error>> {
    #[cfg(feature = "grpc")]
    {
        tonic_prost_build::configure()
            .protoc_arg("--experimental_allow_proto3_optional")
            .build_server(true)
            .build_client(true)
            .compile_protos(&["proto/authz.proto"], &["proto"])?;
    }
    Ok(())
}