dpc
dpc
E.g.: https://github.com/bincode-org/bincode/blob/cfc067224e135ad73fae2fa22d7b4327f713d84d/derive/src/derive_enum.rs#L45 Otherwise macro fails if there's a `mod core` anywhere, which is not impossible, as it's a very generic name.
I have a type `Address` that impls `Deserialize` only for `Address`. I'd like to use it in some other `structs` but derive `Deserialize` only for `Address` : ```rust #[derive(Serialize, Deserialize)]...
**Description** We've recently been banning [watch::Sender:send](https://docs.rs/tokio/latest/tokio/sync/watch/struct.Sender.html#method.send) method in our codebases because: > However, when send fails, the value isn’t made available for future receivers (but returned with the [SendError](https://docs.rs/tokio/latest/tokio/sync/watch/error/struct.SendError.html)). is...
**Is your feature request related to a problem? Please describe.** In our git pre-commit hook I'd like to have semgrep remind devs about something that will become a hard error...
### Describe your issue We're using GNU Parallel to run a large test suite, and oftentimes when hitting problems with it (like MacOS support glitches) I wish I could move...
In our project I'm upgrading nixpkgs from 24.05 to 24.11-beta and I've hit a problem that rocksdb no longer links. We've been using something like: ``` "ROCKSDB_${build_arch_underscores}_STATIC" = "true" "ROCKSDB_${build_arch_underscores}_LIB_DIR"...
I have a Markdown file that contains links across itself: ``` The [Fedimint federation](#Federation-Nodes) ... ... ## Federation Nodes ``` This link works, even in my LSP, so I can...
We have a large project, lots of deps, lots of own LoC. Our normal builds product a lot of artifacts already, but ccov ones are huge. Any recommendations how to...
I'm doing quite a bit of creative gluing things together including `argc`. I'm defining a alias command for Jujutsu: ```toml parent-add = ["util", "exec", "--", "bash", "-c", ''' set -euo...
For some time now (months) I'm sometimes experiencing corruption of Rust build artifacts. Typically it's Rust/linker complaining `Unsupported version 0 of Verneed record` about some intermediate rlib binaries, but I...