prost
prost copied to clipboard
Stripped underscore character from message and enum names
We have proto files with all top-level definitions look like this:
message R_SomeRequest {
...
}
enum R_SomeEnum {
}
Which is translated by prost into RSomeRequest and RSomeEnum Rust names. Is it possible to retain the underscores, perhaps with configuration option?
prost uses heck's case conversion implementation, which does not support this.