Eric Kidd
Eric Kidd
OK, I took a look at several other AMQP libraries, and consulted with my co-workers, and we decided that the easiest fix would be to reimplement the core socket code...
OK, I've implemented a Tokio-based `Connection` class with a synchronous interface designed to mimic `amqp::Connection`. Here are the interesting bits of code: - [The client and server](https://github.com/faradayio/toy-tokio-queue/blob/master/src/main.rs). The `client` function...
Yeah, `boondock` is used by [cage](https://github.com/faradayio/cage), which actually creates and controls containers using `docker-compose` (and maybe sometimes `docker`). `cage` uses `boondock` for a bunch of things that can't be done...
Oh, cool! I would definitely be happy to look at a PR.
Thank you for figuring this out! Please see my note on this PR about the maintenance schedule for `boondock`: https://github.com/faradayio/boondock/pull/21. TL;dr: I've been juggling other stuff lately, but I hope...
Hmm, it's possible that docs.rs doesn't have the necessary OpenSSL C libraries correctly configured to build `boondock`. I'm not sure how to fix that. If anybody figures it out, I'll...
Thank you for the interest! Cage uses `docker-compose run` and `docker-compose exec` as necessary, because it's trying to maintain compatibility with Docker compose. We'd love to have a feature like...
Yuck. OK, so I can think of three ways to tackle this: 1. Switch your Docker daemon to use HTTP over TCP (instead of Unix streams), and try to use...
No, it's fine. I'm happy to answer questions! I'm just overloaded with a bunch of different Rust stuff, so it may sometimes take a while for me to respond, though....
Yup, for some of these operations like `run -it`, it may honestly be easiest to invoke the `docker` CLI tool. That's how `cage` handles these issues—`boondock` for getting machine readable...