Skip to main content

ace_uds/
lib.rs

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