Diogo Sousa

Results 68 comments of Diogo Sousa

> By the way, have you considered using rustdoc's API instead of resolving things manually? @LukeMathWalker did a great talk on it recently, but TLDR is that you can consume...

#177 might allow this to be possible in the future.

I'm glad you gave it a try. There's still some work to do (not to mention the code is really messy right now), but I should be able to work...

> I think that might be problematic, as a lot of repos tend to declare features like nightly or no_std or unstable etc, which are usually not desirable and might...

I believe scoverage computes the branch coverage already.

Not sure if I get what on-demand/after-in-general means. In my case I have a table that is created elsewhere (and I don't have access to the entity definition), where I...

Pdb should then throw an appropriate exception.

Hi. I'm redesigning a big part of intralinks (#177) and this and other issues will be simpler to address once that's done.

Once #177 is done this should be relatively easy to do.

I've avoided this issue by mimicking the way cargo calls `rustc`. I set the rustc flags like this: ```rust config.target_rustcflags = Some("--edition=2021 -L dependency=target/debug/deps/ --extern mycrate= --extern adependency="); ``` where...