#enums #serialization #protobuf #sea-orm #deserialize #serde #prost

macro prost-enum

Enhance Enums of prost generated files to support serde and sea-orm

5 releases

0.1.1 Oct 29, 2024
0.1.0 Sep 20, 2024
0.0.2 Oct 5, 2023
0.0.1 Oct 5, 2023
0.0.0 Jun 5, 2023

#1029 in Encoding

Download history 175/week @ 2024-10-24 60/week @ 2024-10-31 6/week @ 2024-11-07 2/week @ 2024-11-14 2/week @ 2024-11-21 1/week @ 2024-12-05 2/week @ 2024-12-12

281 downloads per month

MIT license

9KB
158 lines

Usage

Use prost_enum::enhance to make protobuf enums support better serialize / deserialize.

(Optional) Make enums to be used in Sea-ORM, which will be treated as i32 / Integer.

// In build.rs
let mut config = prost_build::Config::new();
// ...
config.enum_attribute(
    ".",
    "#[prost_enum::enhance]",
);
// ...

Dependencies

~0.3–2MB
~34K SLoC