1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! A [Serde](https://serde.rs) implementation of the [Bebop
//! protocol](https://github.com/RainwayApp/bebop).

mod de;
mod error;
mod ser;

#[doc(inline)]
pub use de::{from_bytes, Deserializer};
#[doc(inline)]
pub use error::{Error, Result};
#[doc(inline)]
pub use ser::{to_bytes, to_bytes_message, Serializer};