Eric Kidd
Eric Kidd
Thank you for digging into this tricky design problem! I miss the "chained" error display provided by `quick_main!` in `error-chain`. A lot of my software has been designed around showing...
Hello! I'm the maintainer of `boondock`, a barely-maintained Docker client for Rust. I'm hoping to migrate away from it at some point, and `shipyard` is on my shortlist. There's one...
(I was talking to @huonw about embedded Rust the other day, and he suggested I write this up as an RFC issue. I hope this is in the correct place!)...
The `validate_file` function in `compose_yml` is supposed to make sure that all the files we read and write correspond to an appropriate JSON schema. Unfortunately, this relies on `valico`, which...
Many thanks to @asaaki for having figured out the static link check was returning flase negatives with Alpine's `lld`. See: https://github.com/emk/rust-musl-builder/pull/120#issuecomment-803407719 The plan is to merge this when Rust 1.58.0...
Right now, we're stuck on PostgreSQL 11 because of https://github.com/sgrif/pq-sys/issues/27. This needs to be addressed upstream in `pq-sys`, I believe.
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...
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...
We currently have no way to list stopped containers, probably because something has changed in the protocol.
Right now, we rely on OpenSSL to handle `https`, which means that we need to special-case everything for the Mac. Ideally, this would mean using [native-tls](https://github.com/sfackler/rust-native-tls), which would in turn...