pilota-build 0.13.10

Compile thrift and protobuf idl into rust code at compile-time.
Documentation
1
2
3
4
5
6
7
8
9
10
11
struct A {
    1: required string a(pilota.serde_attribute = "#[serde(rename = \"AA\")]"),
    2: required i32 b,
}(pilota.serde_attribute = "#[serde(rename_all = \"camelCase\")]")

typedef i32 B(pilota.serde_attribute = "#[serde(rename = \"BB\")]")

enum C {
    D(pilota.serde_attribute = "#[serde(rename = \"DD\")]"),
    E,
}(pilota.serde_attribute = "#[serde(untagged)]")