orbitcast 0.1.10

Real-time WebSocket server with ActionCable protocol for Mothership
1
2
3
4
5
6
7
8
fn main() -> Result<(), Box<dyn std::error::Error>> {
    println!("cargo:rerun-if-changed=proto/anycable.proto");
    tonic_build::configure()
        .build_client(false)
        .build_server(false)
        .compile_protos(&["proto/anycable.proto"], &["proto"])?;
    Ok(())
}