Jan Srzednicki
Jan Srzednicki
Idea/request: The unfortunate problem with using the generated code is that it is not possible to add custom type/field attributes; it can be achieved with `.type_attribute()` entries in the config,...
Hoi, If one uses `assert_eq!` or `assert_ne!` macros inside closures defined inside a `#[test_case(...)]`, the drop-in replacement method provided by the [pretty_assertions](https://crates.io/crates/pretty_assertions) won't work, as the compilation fails on ambiguous...
## Feature Request ### Crates `tonic_build` ### Motivation When the user does not need object safety (not yet supported by the mainline compiler), `#[async_trait]` on the generated service is not...
This addresses the problem that the Duration's sign will "disappear" both during serialization and deserialization of sub-second Durations.
The issue is here: https://github.com/time-rs/time/blob/aca5c3652aff6fc7df3fbd8591c3e324d3a6ffb2/time/src/serde/mod.rs#L257 When feature `serde_human_readable` is enabled, the serializing code incorrectly assumes that for a sub-second negative duration, the `self.whole_seconds()` will provide the sign during printing. Similar...