dactor 0.3.0

An abstract framework for distributed actors in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
fn main() {
    prost_build::compile_protos(&["proto/system.proto"], &["proto/"]).unwrap_or_else(|e| {
        panic!(
            "Failed to compile proto/system.proto: {e}\n\
             \n\
             This requires the `protoc` compiler. Install it via:\n\
             - macOS:   brew install protobuf\n\
             - Ubuntu:  apt install -y protobuf-compiler\n\
             - Windows: choco install protoc\n\
             - Or set PROTOC env var to the protoc binary path.\n"
        );
    });
}