// SPDX-License-Identifier: AGPL-3.0-or-later
//! Methods and structs to generate CDDL for CBOR validation.
//!
//! All operations in p2panda are encoded via CBOR and can be checked against the right format via
//! CDDL.
//!
//! Read more about CDDL: <https://tools.ietf.org/html/rfc8610>
pub use ;
pub use CddlValidationError;
pub use generate_cddl_definition;
pub use validate_cbor;