Eric Kidd

Results 38 issues of Eric Kidd

Looking at the Docker source code, it seems like the daemon actually supports multiple protocol versions. Is there some way to tell it what version we're expecting to see?

The following example programs currently fail with JSON parse errors: ``` rust cargo run --example stats cargo run --example images cargo run --example info ``` See the forthcoming blog post...

`docker ps` has some options for filtering the containers it returns: ``` Usage: docker ps [OPTIONS] List containers Options: -a, --all Show all containers (default shows just running) -f, --filter...

The Rust compiler has changed a lot since this code was last worked on, and there are a lot of warnings when this code is compiled now. We need to...

Found by @seamusabshere. This happens when running the official Mac binaries (built by Travis CI). Things we've tried: - [x] Rebuilding locally. Works. - [x] `cargo update` on `credentials_to_env`. Didn't...

faraday

The PR #18 contains an `each_like!` macro which mimics Ruby's `ArrayLike` matcher. This generates a `#{path}[*].*` rule: ``` def handle_array_like array_like, path, match_type record_rule "#{path}", 'min' => array_like.min record_match_type_rule "#{path}[*].*",...

Good morning, and thank you for merging my patches! Would it be possible to publish new versions of the crates to crates.io? Thank you for helping me get off the...

I saw that you had the evil encoding CESU-8 on one of your TODO lists. If it helps, I've taken a stab at a small, standalone encoding library which converts...