nexus-actor-core-rs 1.0.9

Core library for Nexus Actor
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
fn main() {
  tonic_build::configure()
    .out_dir("generated")
    .compile_protos(
      &[
        "proto/google/protobuf/duration.proto",
        "proto/google/protobuf/any.proto",
        "proto/actor.proto",
      ],
      &["proto/"],
    )
    .unwrap();
}