Vincent Esche
Vincent Esche
Hi @kangalioo, I too would love to be able to generate a pure type-dependencies graph, but unfortunately afaiui `rust-analyzer` (which powers `cargo-modules`) only provides dependency information on module scope. It's...
Either that or `ra_ap_ide_db` in my experience. But then again I might have searched in the wrong corners and with the wrong keywords.
Thanks for the bug report and test case @asomers! It looks like this will require [this issue](https://github.com/rust-analyzer/rust-analyzer/issues/6117) on [rust-analyzer](https://github.com/rust-analyzer/rust-analyzer/) to get resolved first.
With rust-analyzer's `CargoConfig` now accepting a … ```rust /// crates to disable `#[cfg(test)]` on pub unset_test_crates: Vec, ``` we should hopefully be able to fix this regression sooner or later....
I'll have to do a more thorough investigation for this, but my guess is that this difference is due to the fact that we make use of rust-analyzer's HIR, rather...
From what I understood from the article the reflexion mode would effectively allow you to collapse a selection of nodes (i.e. a subgraph) into a new node (i.e. a meta-node)?...
Thanks, @withoutboats! I too would love to have **cargo modules** provide such a feature. How would you expect such a hypothetical command `cargo modules cycles` to present detected cycles? Something...
A device trait like this would assume that a device can only use one interface: ```rust pub trait Device { type Interface; // ... } ``` In order to nicely...
I'm personally not familiar enough with the FFT, so … @gburlet would you consider your modified implementation a bug fix or an alternative to our current one? Or put differently:...
This is great, thanks a lot @gburlet!