Hytak
Hytak
I could not find a good general purpose allocator written in pure rust. But mimalloc, which is written in c, is really easy to use. It requires just two line...
It would be really nice to have the [Tail Call Elimination](https://llvm.org/docs/Passes.html#tailcallelim-tail-call-elimination) pass available. This is useful for the compiler I'm working on, because it can optimize things like the recursive...
I'm trying to parse a WAT `Expression` and emit the instructions into a wasm-encoder `Function`. This is for a language compiler i'm writing that has inlines WAT code. The problem...
**Describe the bug** As the title says, the implementation of `map_keyed` assumes that if the new input has an item with the same key, then that item is only moved...
`FrozenVec::into_vec` takes ownership of `self`. This means there can not be any references to elements in the `FrozenVec`. Removing the `StableDeref` bound will make it possible to use `FrozenVec` to...
This looks like a really cool project btw.
This looks like a cool project! I have one question about the generated yaml with nullable fields: This struct has three nullable fields: ```rust #[derive(ToSchema)] struct Dummy { #[schema(inline)] attention_line:...
This should make the option less confusing. @joshka do you think this documentation is good?
Foreign keys to tables that allow deleting should have an index. This is important to make deleting efficient. Note that this is already implied by `#[no_reference]`, maybe the new attribute...
The current integer primary key name is "id" which is likely to be a column name that developers want to use.