Steve Klabnik

Results 424 comments of Steve Klabnik

@rust-lang/rustdoc is this something we intend to pursue?

Looking [at that](https://github.com/Caged/lighthouse-api/blob/master/lib/lighthouse/console.rb), it just does `include Lighthouse`. Hm. Anyway, I've just cloned, let's see what we can do.

I ended up just doing it all by hand. :/

@boshen had asked this over there: > For cache misses, I want to learn the proper approach as well. Do we put the data structure in a single thread and...

> We want to simply return the package. If we know that some other task is already downloading the package, what we actually want is to return. We have no...

> Distinction between cli and package_manager. I tried to distinguish the clap requirements and package_manager commands, but passing data between them, such as InstallArgs makes unnecessary data copies without sharing...

Just saving for myself, to reproduce the cache misses: ```diff diff --git a/crates/registry/src/lib.rs b/crates/registry/src/lib.rs index a955f0a..59a1331 100644 --- a/crates/registry/src/lib.rs +++ b/crates/registry/src/lib.rs @@ -63,8 +63,10 @@ impl RegistryManager { pub async...