camel-component-jms 0.18.0

JMS component for rust-camel via Java bridge
Documentation
1
2
3
4
5
6
7
8
9
10
fn main() -> Result<(), Box<dyn std::error::Error>> {
    unsafe {
        std::env::set_var("PROTOC", protoc_bin_vendored::protoc_bin_path()?);
    }

    tonic_prost_build::configure()
        .build_server(false)
        .compile_protos(&["proto/jms_bridge.proto"], &["proto"])?;
    Ok(())
}