#![doc = include_str!("../README.md")]
#![cfg_attr(not(test), no_std)]
#![forbid(unsafe_code)]
#![feature(slice_as_array)]
#![warn(clippy::pedantic)]
#![allow(clippy::missing_errors_doc)] // TODO: Remove when stable
#[cfg(feature = "alloc")]
extern crate alloc;
pub mod constants;
pub mod crypto;
pub mod msg;
pub mod types;
pub mod wire;