sbor 1.3.1

Reference implementation of the SBOR binary data format, from the Radix DLT project.
Documentation
#![allow(clippy::module_inception)]

mod custom_traits;
mod describe;
mod macros;
mod schema;
mod schema_comparison;
mod schema_validation;
mod type_aggregator;
mod type_data;
mod type_link;
mod well_known_types;

pub use custom_traits::*;
pub use describe::*;
pub(crate) use macros::*;
pub use schema::*;
pub use schema_comparison::*;
pub use schema_validation::*;
pub use type_aggregator::*;
pub use type_data::*;
pub use type_link::*;
pub use well_known_types::*;

pub mod prelude {
    pub use super::schema::*;
    pub use super::type_aggregator::*;
    pub use super::type_data::*;
    pub use super::type_link::*;
}