switchback-avro 0.0.1-0.dev.3

Shared Avro schema layer for the switchback framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![forbid(unsafe_code)]
#![allow(missing_docs)]

//! Avro schema document parser layer for switchback family parsers.
//!
//! See the crate README for the public API surface.

pub mod meta_schemas;
pub mod schema;

pub use schema::{
    AvroArray, AvroEnum, AvroFixed, AvroMap, AvroPrimitive, AvroRecord, AvroSchema, AvroUnion,
    collect_named_avro_schemas, populate_avro_schema_body,
};