1#![no_std] 2 3#[cfg(feature = "alloc")] 4extern crate alloc; 5 6pub mod constants; 7pub mod error; 8pub mod ext; 9pub mod message; 10 11pub use error::{UdsError, ValidationError};