Dirkjan Ochtman
Dirkjan Ochtman
### Check for existing issues - [X] Completed ### Describe the feature In VS Code, I rely a lot on the explorer showing me in which files the compiler has...
**Is your feature request related to a problem? Please describe.** When trying to understand where duplicate dependencies are coming from, the trees displayed by default by `cargo deny check` are...
Since the generated code only depends on files in the repository anyway, save the separate compilation for the build script and only generate code in a test. Make it fail...
The crate I'm currently working on has code like the following: ```rust #[derive(Debug, Clone, Error)] pub struct Error { pub(crate) kind: ErrorKind, backtrack: Option, } #[derive(Debug, Error)] pub enum ErrorKind...
As a potential help for #1915. Not sure if this is the right solution but seems like a low-cost API to offer.
**Checklist** * [x] I've searched the issue tracker for similar requests **Is your feature request related to a problem? Please describe.** There is currently a proliferation of Cargo features in...
I noticed that this works: ```rust fn check_int_slices(v: HashSet, lens: Vec) -> bool { let mut lens = lens; ... } ``` but this doesn't: ```rust fn check_int_slices(v: HashSet, mut...
I'm using parking_lot's `RwLock` in some graph-like code where I use rayon to parallelize initialization of the graph. To enforce some ordering, I'm taking a write lock when I initialize...