https://github.com/amqp-rs/amq-protocol
AMQP specifications
https://github.com/amqp-rs/amq-protocol
amqp rabbitmq rust rust-bindings
Last synced: about 1 year ago
JSON representation
AMQP specifications
- Host: GitHub
- URL: https://github.com/amqp-rs/amq-protocol
- Owner: amqp-rs
- License: bsd-2-clause
- Created: 2017-03-03T08:42:19.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2025-03-17T18:50:09.000Z (over 1 year ago)
- Last Synced: 2025-04-19T01:37:00.855Z (about 1 year ago)
- Topics: amqp, rabbitmq, rust, rust-bindings
- Language: Rust
- Size: 839 KB
- Stars: 33
- Watchers: 7
- Forks: 17
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: COPYING
Awesome Lists containing this project
README
# amq-protocol
[](https://docs.rs/amq-protocol)
[](https://github.com/amqp-rs/amq-protocol/actions)
[](https://crates.io/crates/amq-protocol)
## Features
- codegen: force code generation (default to pregenerated sources)
- vendored-openssl: use a vendored openssl version instead of the system one (when using openssl backend)
- verbose-errors: enable more verbose errors in the AMQP parser
## TLS backends
- native-tls
- openssl
- rustls (default)
## Rustls certificates store
- rustls-native-certs (default)
- rustls-webpki-roots-certs
## Warning about crypto backends for rustls
A crypto implementation must be enabled in rustls using feature flags.
We mimic what rustls does, providing one feature flag per implementation and enabling the same as rustls by default.
Available options are:
- `rustls--aws_lc_rs` (default)
- `rustls--ring`