Jan Srzednicki
Jan Srzednicki
My monitor does that too - after coming back from sleep, it uses its OSD brightness setting. One needs to play with the Twinkle Tray slider to fix it. Maybe...
> Alternatively, this feature could be implemented by making the color `schemes` themselves have dual palettes: one for light and one for dark. So you could assign to a `profile`...
Hi! Is this change abandoned now? It is somewhat similar to my feature request here: https://github.com/tokio-rs/prost/issues/658 I'd be particularly eager to see a way to inject support for PGV, preferably...
Thanks for the update. Yeah, I was even thinking about forking `prost-build` privately for now, however the problem I see is that it is non-trivial to integrate it with `tonic`...
This could look like this: ```protobuf message Foo { option rust.type_attribute = "#[derive(::validator::Validate)]"; string email = 1 [ rust.field_attribute = "#[validate(email)]" ]; string name = 2 [ rust.field_attribute = "#[validate(custom...
Another (alternative) idea: @LucioFranco, would you accept a PR that adds a (feature-guarded) dependency on `validator` crate and then generates validation instrumentation (will need a few custom functions, but nothing...
OK, so the way I imagine it working would be the following: - `prost` declares to natively support the [PGV](https://github.com/envoyproxy/protoc-gen-validate) validation schema. - The PGV proto(s) will need to be...
Codegen plugins API sound very nice, but it also sounds like a substantially larger and more complex effort. While I could possibly contribute the PGV implementation in some freeish time,...
`crate` level would certainly be most user-friendly, with a possible `module`-level override option (not my use case, but I imagine this being useful).