The suggested setup for tests using loom[^1] involves using a custom configuration. (`#[cfg(loom)]`) Unfortunately, this triggers the new rustc lint for unexpected `cfg` parameters [^2] (only available on the latest nightly version). What is the suggested way to deal with this? Ideally one would not need to add a `build.rs` file *just* to register a custom `cfg` name. (This issue stems from https://github.com/faern/oneshot/issues/34) [^1]: https://docs.rs/loom/latest/loom/#writing-tests [^2]: https://blog.rust-lang.org/2024/05/06/check-cfg.html