zeebe-rs 0.3.1

A gRPC client for interacting with the workflow and decision engine Camunda Zeebe.
Documentation
1
2
3
4
5
6
7
8
9
10
fn main() -> Result<(), Box<dyn std::error::Error>> {
    if std::env::var("DOCS_RS").is_ok() {
        tonic_build::configure()
            .protoc_arg("--experimental_allow_proto3_optional")
            .compile_protos(&["proto/gateway.proto"], &["proto"])?;
    } else {
        tonic_build::compile_protos("proto/gateway.proto")?;
    }
    Ok(())
}