Vincent Esche
Vincent Esche
### **Issue:** Incorrect type resolving for differently scoped types of same name. A minimalistic crate like this … ```rust // lib.rs pub mod foo { pub struct Foobar { pub...
I just pushed a PR (https://github.com/eqrion/cbindgen/pull/201) that aims to move us a bit closer towards a direction of fixing this.
@UebelAndre A look at the [diff](https://github.com/eqrion/cbindgen/pull/233/files#diff-2dec5224b8acf264cb01b7604450b7867400c4d9648ceb538ac85b9d3e21cdfdR9) shows that the PR replaces the use of bare strings with ```rust pub struct Path { name: String, } ``` As such the PR...
I'm closing this `$ cargo modules generate graph --with-uses` generates the following graph: ```plain ┌───────┐ │ crate │ └───────┘ │ │ ▼ ┌──────────┐ ─│ crate::a │─ ─ ─ ─ ─...
I'm gonna close this due to inactivity for now. Feel free to request a re-open once it takes up steam again though. 🙂
`feature(specialization)` would make this possible: `Cargo.toml`: ```toml [features] use-specialization = [] ``` `lib.rs`: ```rust #![cfg_attr(feature = "use-specialization", feature(specialization))] ``` `intersects.rs`: ```rust #![cfg(feature = "use-specialization")] default impl Intersects for T where...
Ugh, I didn't mean to close this. 🙄 > Great writeup as always, @regexident! I have half a mind to start an Etsy shop that sells framed prints of your...
Absolutely. For the time being I'm just gonna quit Brisk upon submitting a radar to have it not conflict with my config in [Spectacle.app](https://www.spectacleapp.com/). :)
Is there any progress on this, @devxoul?
@kangalio The just released version `0.8.0` provides a `--no-modules` CLI argument for filtering out modules from graphs.