Jonas Fassbender
Jonas Fassbender
Baseline macro as described by Kevin Reid [here](https://users.rust-lang.org/t/semver-compatibilty-of-exported-declarative-macros-using-3rd-party-dependencies/105635/2?u=jofas).
Make feature documentation better. I want to add these banners that `syn` or `tokio` have. Also find out how to document features so that the banner on the "`docs.rs` features"...
Write unit tests for the utility functions of the derive macros.
This closes #6847 by removing the deadlock from the test as discussed in #6876. The changes I made are based on [this suggestion](https://github.com/tokio-rs/tokio/pull/6876#issuecomment-2416665508). I made the blocking tasks block by...
This PR adds a Loom test for the deadlock observed in #6847. When I run this test locally on my machine with ``` LOOM_MAX_PREEMPTIONS=1 LOOM_MAX_BRANCHES=10000 RUSTFLAGS="--cfg loom -C debug_assertions" \...
Fixes #153.
[Feature] `--no-code-tag-removal` flag allowing to make removal of backticks in TOC entries optional
**Is your feature request related to a problem? Please describe.** CI in one of my projects started failing, because the generated TOC entries did not contain backticks. I.e. a headline:...
Can I apply this to create an array/slice with flattened fields? * https://users.rust-lang.org/t/expanding-const-str-arrays/126374/4?u=jofas * https://play.rust-lang.org/?version=stable&mode=debug&edition=2024&gist=427a99aff416d3e5e048d7b86bbdf986
The first sentence of [[patterns.ref.info]](https://doc.rust-lang.org/reference/patterns.html#r-patterns.ref.intro) states (my emphasis): > Reference patterns dereference the pointers that are being matched _and, thus, borrow them._ The emphasised part reads a bit confusing to...