switchback-avro 0.0.1-0.dev.2

Shared Avro schema layer for the switchback framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Avro schema IR and populate helpers.

mod body;
mod ir;
mod named;

pub use body::populate_avro_schema_body;
pub use ir::{
    AvroArray, AvroEnum, AvroField, AvroFixed, AvroMap, AvroPrimitive, AvroRecord, AvroSchema,
    AvroUnion,
};
pub use named::collect_named_avro_schemas;