RustyYato
RustyYato
```rust pub fn inc(x: usize) -> usize { x + 1 } ``` I tried running `cargo asm $crate_name::inc`, and got ```asm brand::inc: ret ``` Notice how the first line...
Given a generic type like `A` before `sqlx` would produce `A::from_row(row)` which is invalid syntax. Now it produces `
The layouts of `repr(Rust)` types are unstable, so you will need to specify a layout to safely depend on them. Using `repr(C)` is a fine default until we get simething...
As was further verified by #4, this code is not well tested enough. Currently, not all functions are tested, and this needs to change.
Fixes #385 This removes unreachable branches from LUTs in the generated code, so that LLVM can see that the error case is unreachable for lexers like in the linked issue
I have some code like this: ```rs #[derive(Logos)] #[logos(source = [u8])] enum Token { // NOTE: This is needed because logos has dot_matches_newline(false) set for regex_syntax (which is the default)...
Fixes rust-lang/rust#149687 r? @saethlin
Add `repr(ordered_fields)` and provide a migration path to switch users from `repr(C)` to `repr(ordered_fields)`, then change the meaning of `repr(C)` in the next edition. This RFC is meant to be...