rust-amqp
rust-amqp copied to clipboard
AMQP client in pure rust. Corresponds to rabbitmq spec.
Hi, What is the status of the async Tokio support in this library? Any places you need help? This would be super useful for our company in the next six...
Greetings. We use `rust-amqp` heavily at work, in production. Thank you for implementing it! `rust-amqp` relies on `try_clone`, which is missing in newer versions of OpenSSL (and in portability libraries...
OpenSSL 1.1 is coming on packages, for example it landed on Debian Sid next week. That calls to bump the `openssl` crate dependency to 0.9. As the `openssl` 0.7 create...
Thank you for writing a great AMQP library for Rust! I'm using this library at work, and I've run into a use-case where it would really help to have AMQP...
First of all, thanks for working on this library! I'd like to store a `basic::GetIterator` value in my struct, but cannot do it since it's private. Can we make that...
Hi, I'm trying to get some feedback (comments) on an idea for the API before spending too much time working on it. The number of arguments in declare_exchange() is a...
It seems that trying to call `open_url` without a domain does not work. Using a domain/hostname works fine, and I'm not even sure how it would be possible to parse...
If I try to publish a message to a queue that no longer exists with the mandatory field set to true, the publish "succeeds", but then if I try to...
Currently, when using GetIterator, it is not possible to reply to the sender (using the reply_to header for example) as the GetIterator already holds a mutable reference on the channel....
For now, the consumer handles new deliveries one by one. It would be cool if we could say something like "handle 10 messages in parallel"