Kestrer
Kestrer
I have attatched an image showing a few inconsistenties:  Namely: * Tags don't highlight if placed on the first line. * Tags don't highlight if placed with a...
In most programs that use `async-io`, the user will simply run `block_on` at the top level. However, this will still spawn the `async-io` thread despite it not being necessary. Would...
Currently `RwLockReadGuard` is invariant over its type parameter, meaning that for instance this sound code: ```rust use async_lock::{RwLock, RwLockReadGuard}; fn do_stuff
Naming
axum-server isn't an ideal name because this project is not strictly related to Axum, and that can be confusing. This issue is for discussion regarding options for different names. Some...
Now that all fields are boxed, would it be possible to support an explicit `#[boxed]` attribute that would make `new` and `Heads` use a `Box` instead of `T`? This would...
Because `get_subcat_ids` expects the passed-in array to be contiguous, failing to call `array_values` after `array_intersect` sometimes leads to errors, when one has a search query like `category:Foo Bar` and there...
The GraphQL spec doesn't mention the restrictions on variable types. For example: ```graphql query($value: SomeScalar) { # ... } ``` And in variables: ```json { "value": { "foo-bar": 5 }...
`winapi_util` and `winapi_easy` cover small portions of it, but we have yet to see a fully covered set of bindings à la [Nix](https://crates.io/crates/nix). It should wrap raw handles in more...
Currently `RwLockReadGuard` is invariant over its type parameter, meaning that for instance this sound code: ```rust use parking_lot::{RwLock, RwLockReadGuard}; fn do_stuff
Closes #19. I didn't implement `shrink_to` since it is unstable. I also simplified the implementation of `clear`, since I noticed it was possible; there are a few other minor changes...