amqpsy 0.0.5

Extremely opinionated AMQP PubSub library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use grpc_build::Builder;

fn main() {
    if std::env::var("DOCS_RS").is_ok() {
        return;
    }
    println!("cargo::rerun-if-changed=protos");
    Builder::new()
        .build_client(true)
        .build_server(true)
        .force(true)
        .out_dir("src/protogen")
        .build("protos")
        .expect("build.rs: Generate proto")
}