Vincent Esche

Results 167 comments of Vincent Esche

Fixed by #227. dot graph source ```dot digraph { graph [ label="github_issue_102", labelloc=t, pad=0.4, // Consider rendering the graph using a different layout algorithm, such as: // [dot, neato, twopi,...

Looks like I was misled by the output of `cargo msrv list`, which made me believe `1.70.0` would be sufficient: ```terminal $ cargo msrv list ┌────────┬────────────────────────────────────────────────────────────────────────────────────────────┐ │ MSRV ┆ Dependency...

The fix (🤞 ) should be up now as `0.13.2`. Would be great if you folks could let me know if it resolves the issue.

Same for me. In only 1 out of 10 tries the window stays (yet sometimes vanishes when switching apps).

Ho Cameron, do you have a sort of sketch of how you would envision such `uses` to be visualized via the `structure` sub-command?

For "dependency" (/"uses") relationships though need to add the `--uses` flag to your `cargo modules generate graph …` command (which has `--no-uses` as implicit default). That said there currently is...

I very much hope so! The tool uses `rust-analyzer` (RA) as a library dependency and I simply haven't yet been able to fully figure out how walk the types used...

You may want to watch this one https://github.com/regexident/cargo-modules/pull/227 :wink:

Hi @uccidibuti unfortunately the **apply_attr** crate depends on the **syntax**, which was the status-quo 3 years ago, yet has since been deprecated in favor of **rustc_ast** to which it would...

> 2. `#[cfg(X = Y)]` is not handled Wait, that is what [`Cfg::Named`](https://github.com/eqrion/cbindgen/blob/967452423259566dd959770435d35b3d41e2b906/src/bindgen/ir/cfg.rs#L49) is for, no? As such for `#[cfg(X = Y)]` one would need a define like this: ```toml...