robomotion 0.1.3

Official Rust SDK for building Robomotion RPA packages
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
fn main() -> Result<(), Box<dyn std::error::Error>> {
    tonic_build::configure()
        .build_server(true)
        .build_client(true)
        .out_dir("src/proto")
        .compile_protos(
            &["proto/plugin.proto", "proto/runner.proto"],
            &["proto"],
        )?;

    println!("cargo:rerun-if-changed=proto/plugin.proto");
    println!("cargo:rerun-if-changed=proto/runner.proto");

    Ok(())
}