Results 439 comments of Nemo157

@mitchmindtree I would like to also see an extra step between 3 and 4 doing full workspace package validation to replace the current pre-publish validation. This does the normal per-package...

> We likely should detect dependency cycles to give people errors early (https://github.com/rust-lang/cargo/issues/1169#issuecomment-1372361912). Dependency cycles are actually allowed, as long as the package names have been previously registered on crates.io...

Another place this causes issues is when using alternative source control systems, I just tried switching to using jujutsu for my local clone of a flake, but that results in...

Couple things I noticed trying it out: * The default socket path should be in `$XDG_RUNTIME_DIR` not `$XDG_DATA_HOME`, for security and to avoid issues around networked home dirs. * It'd...

Are there any plans to integrate other functionality into the daemon? I've noticed rarely sometimes auto-completion is delayed, I presume it's something similar to #2042 where the sqlite database is...

AFAIK linking these services in isn't necessary, the combined `share/systemd/user` directory is in the search-path already (check `systemd-path systemd-search-user-unit`). The issue is more that there needs to be some way...

Would it be plausible to split this into `wrap_comments` and `wrap_doc_comments`, and make `wrap_doc_comments` markdown aware?

I actually don't care about normal comments much, I want to be able to have rustfmt wrap my doc comments. My thought was that normal comments aren't required to be...

> Isn't there a way to combine this with cfg test(s) for "train", e.g. beta or nightly and unstable feature gates? Code written for the stable compiler should not have...

I just pushed a branch with a quick implementation on the `linux-native` backend only: https://github.com/ruabmbua/hidapi-rs/compare/main...Nemo157:hidapi-rs:monitor-linux-native Testing it in my app it works perfectly, although as mentioned in the libusb/hidapi#238 there...