facet_msgpack/lib.rs
1#![warn(missing_docs)]
2#![deny(unsafe_code)]
3#![doc = include_str!("../README.md")]
4
5mod errors;
6pub use errors::Error as DecodeError;
7
8mod constants;
9pub use constants::*;
10
11mod deserialize;
12pub use deserialize::*;
13
14mod serialize;
15pub use serialize::*;
16
17mod msgpack;
18pub use msgpack::MsgPack;
19
20#[cfg(feature = "axum")]
21mod axum;
22#[cfg(feature = "axum")]
23pub use self::axum::MsgPackRejection;