Results 439 comments of Nemo157

One issue with this API I've had pointed out is that it doesn't handle deallocation if initialization fails; and even if there were additional APIs to support that it is...

Yes, I've always been hardcoding the protocol in the config. I think I have noticed that specific bug too, but less often than issues with the rendering in the frame...

I looked into implementing this, but it's not so trivial, `WindowLayoutDescription` treats `None` as `0` if any siblings have a length set. It seems `modalkit-ratatui` needs some enhancements to support...

By my reading of https://github.com/rust-lang/rustup/blob/06bf5c17a1e6c9caa9dc07453fd0f453db1dcc0b/src/toolchain.rs#L449-L478 if the toolchain doesn't have the binary then it recurses by re-exec-ing the plain binary name, which would resolve to the rustup proxy on the...

I was just trying this out for documenting crate features, it "works" but if this is a potential usecase it would be nice to special case the rendering for it:...

There is also the issue that it repeats every feature on every item in a page: When I last attempted to do something about rendering features I found it much...

I changed the rendering of `feature="foo"` cfgs in #75330, which vastly simplifies the display on module index pages like shown in the `syn` screenshot above. I have also just opened...

In the general case yes, but there are quite a few crates using things like internal `cfg`'s generated by their build.rs for compiler version detection that would not want to...

Maybe it could be supported by parsing the `rustc-link-search` flags, but _not_ the `link-lib` ones, so the end-user still needs to list the libraries to load, but doesn't have to...