switchback_avro/lib.rs
1#![forbid(unsafe_code)]
2#![allow(missing_docs)]
3
4//! Avro schema document parser layer for switchback family parsers.
5//!
6//! See the crate README for the public API surface.
7
8pub mod meta_schemas;
9pub mod schema;
10
11pub use schema::{
12 AvroArray, AvroEnum, AvroFixed, AvroMap, AvroPrimitive, AvroRecord, AvroSchema, AvroUnion,
13 collect_named_avro_schemas, populate_avro_schema_body,
14};