Oscar Walter
Oscar Walter
Resolves #91 This also resolves some false detections of `not_my_dep::my_dep_name::stuff_in_my_dep` 😊 I couldn't find a way to avoid detection of `futures` in with the single line regexp ```rust pub use...
**Is your feature request related to a problem? Please describe.** Yes, it's complicated to detect unused dependencies. **Describe the solution you'd like** Would you be open to adding an integration...
Resolves #4317 **What it does:** - Removes use of `::diesel` in favor of `diesel`, macro anyway already expects diesel to be in scope as per lines 101 to 104
## Setup ### Versions - **Rust:** rustc 1.80.1 (3f5fd8dd4 2024-08-06) binary: rustc commit-hash: 3f5fd8dd41153bc5fdca9427e9e05be2c767ba23 commit-date: 2024-08-06 host: x86_64-unknown-linux-gnu release: 1.80.1 LLVM version: 18.1.7 - **Diesel:** b170af753c - **Database:** N/A -...
Resolves #4276 **Good to know:** - Most diffs are from new indentation due to a second argument to `wrap_in_dummy_mod` - I did not add the option on `QueryId` and the...
# Output  # File structures ``` Repo .cargo/workspace/Cargo.toml Crate/ src/ Cargo.toml ``` [MinimalRepro repository](https://github.com/Elrendio/NextestMinimalRepro) # What I think the issue is I believe that nextest assumes that the workspace...
[Getting started documentation](https://keats.github.io/tera/docs/) suggests to use lazy_static when it could suggest the more idiomatic way using std::sync::LazyLock (or OnceLock). # Changes New version: ```rust pub static TEMPLATES: Tera = std::sync::LazyLock::new(||...