liv
liv
It teaches about shadowing, which is not really useful if used like this (nor is it appropriate at this point in the curriculum).
When a user adds a custom package manager that we _know_ is only available for a specific target, we should (until #604 is fully implemented) try to guess this. -...
In #611, @jamesmunns pointed out that oranda duplicates a lot of requests, which actually can end up rate-limiting the user for large workspaces.
Currently, all of our package managers are global. This means that they'll be shown for every arch/target. This is fine for a lot of package managers, such as npm or...
From #536. A workspace member could accept a `group` key, for example.
From #43.
We have this snippet: https://github.com/axodotdev/axoasset/blob/main/src/compression.rs#L33 We could replace this with a method from `LocalAsset` that `create`s a file and then returns it.
We currently condense a whole lot of `std::io::Error`s into one handler, without being able to specify _which_ file exactly threw the error. This is not good, and should be improved....
From #38, when the zip file `ReadDir` instance comes along a directory, it currently panics due to a `todo!`. We should fix this sooner than later. https://crates.io/crates/walkdir is pretty much...
Adds two new exercises about async/await and handling concurrency with Tokio. I shoved these inbetween threads and macros, as that's where they are in the book (and having done threads...