liv

Results 10 issues of liv

It teaches about shadowing, which is not really useful if used like this (nor is it appropriate at this point in the curriculum).

C-enhancement
A-exercises
P-medium

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. -...

feature - config

In #611, @jamesmunns pointed out that oranda duplicates a lot of requests, which actually can end up rate-limiting the user for large workspaces.

bug - build

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...

feature - build
priority - medium

From #536. A workspace member could accept a `group` key, for example.

feature - build

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...