authly-common 0.0.6

Authly common datatypes and algorithms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
fn main() -> Result<(), Box<dyn std::error::Error>> {
    tonic_build::configure()
        .protoc_arg("--experimental_allow_proto3_optional")
        .compile_protos(
            &[
                "proto/authly/connect.proto",
                "proto/authly/mandate_submission.proto",
                "proto/authly/service.proto",
            ],
            &["proto/"],
        )?;

    println!("cargo:rerun-if-changed=build.rs");

    Ok(())
}