amq-protocol 0.22.0

AMQP specifications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
include!(concat!(env!("OUT_DIR"), "/protocol.rs"));

pub type BasicProperties = basic::AMQPProperties;

#[cfg(test)]
mod test {
    use super::*;

    #[test]
    fn test_description() {
        assert_eq!(format!("{} - {}.{}.{}", metadata::NAME, metadata::MAJOR_VERSION, metadata::MINOR_VERSION, metadata::REVISION), "AMQP - 0.9.1");
    }
}