Joe Wilm

Results 60 comments of Joe Wilm

Switching to a `ToSocketAddrs` argument forces _kafka-rust_ to use synchronous DNS resolution. With the efforts underway for #63 and #81, I imagine there will be a desire for alternative name...

If we did add support for prepared statements, I could imagine an API where the statements are registered with the pool, and then each connection has a statement cache. Upon...

@bruno-medeiros do you know if the `cargo metadata` functionality is available from a crate? `exec`ing a process each time a crate lookup is done would hurt performance..

Cargo appears to be on crates.io, and the `metadata` operation seems to rely on [`resolve_dependencies`](http://doc.crates.io/cargo/ops/fn.resolve_dependencies.html). Maybe this feature could use that directly. If the metadata resolution is fast enough, it...

I looked into using the `cargo metadata` machinery to resolve dependencies. There is a dependency resolution step involving updating the registry information, and updating git repositories. From what I can...

Hmm; I'm not convinced this is an editor issue. For something like VSCode which is *just* a text editor, it seems strange for it to require semantic knowledge of the...

I'm not convinced find-definition shouldn't return "duplicate" definitions, at least by default. They are both real definitions for that identifier. Perhaps there should be an option for looking into `cfg`?...

Hmm, deduping for completions seems reasonable.

There's a PR up for this now! https://github.com/phildawes/racer/pull/463

Hello! I'm very interested in this feature as a large production user of the linkerd2 proxy, and I'm potentially interested in contributing a patch for it. Reading through the notes...