6 releases (breaking)

0.19.0 Jun 27, 2025
0.18.0 Apr 14, 2025
0.17.0 Aug 5, 2024
0.16.0 Sep 26, 2023
0.14.0 Aug 3, 2022

#18 in #avro-schema

Download history 3650/week @ 2025-03-23 4097/week @ 2025-03-30 4369/week @ 2025-04-06 2931/week @ 2025-04-13 3645/week @ 2025-04-20 3704/week @ 2025-04-27 3762/week @ 2025-05-04 4004/week @ 2025-05-11 4015/week @ 2025-05-18 2995/week @ 2025-05-25 3368/week @ 2025-06-01 4483/week @ 2025-06-08 5014/week @ 2025-06-15 4832/week @ 2025-06-22 4121/week @ 2025-06-29 3604/week @ 2025-07-06

17,656 downloads per month
Used in 11 crates (via apache-avro)

Apache-2.0

31KB
590 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 implementation. 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
~38K SLoC