3 releases (breaking)

0.16.0 Sep 26, 2023
0.15.0 Jul 10, 2023
0.14.0 Aug 3, 2022

#23 in #avro

Download history 2964/week @ 2024-02-12 4345/week @ 2024-02-19 5026/week @ 2024-02-26 3132/week @ 2024-03-04 4967/week @ 2024-03-11 3921/week @ 2024-03-18 2887/week @ 2024-03-25 3282/week @ 2024-04-01 3551/week @ 2024-04-08 3679/week @ 2024-04-15 3139/week @ 2024-04-22 1634/week @ 2024-04-29 3470/week @ 2024-05-06 3267/week @ 2024-05-13 4209/week @ 2024-05-20 4041/week @ 2024-05-27

15,019 downloads per month
Used in 7 crates (via apache-avro)

Apache-2.0

26KB
468 lines

avro_derive

A proc-macro module for automatically deriving the avro schema for structs or enums. The macro produces the logic necessary to implement the AvroSchema trait for the type.

pub trait AvroSchema {
    // constructs the schema for the type
    fn get_schema() -> Schema;
}

How-to use

Add the "derive" feature to your apache-avro dependency inside cargo.toml

apache-avro = { version = "X.Y.Z", features = ["derive"] }

Add to your data model

#[derive(AvroSchema)]
struct Test {
    a: i64,
    b: String,
}

Example

use apache_avro::Writer;

#[derive(Debug, Serialize, AvroSchema)]
struct Test {
    a: i64,
    b: String,
}
// derived schema, always valid or code fails to compile with a descriptive message
let schema = Test::get_schema();

let mut writer = Writer::new(&schema, Vec::new());
let test = Test {
    a: 27,
    b: "foo".to_owned(),
};
writer.append_ser(test).unwrap();
let encoded = writer.into_inner();

Compatibility Notes

This module is designed to work in concert with the Serde implemenation. If your use case dictates needing to manually convert to a Value type in order to encode then the derived schema may not be correct.

Dependencies

~1–1.8MB
~41K SLoC