1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
//! `serde` integration.
//! - `to_py_object` converts a Rust value to a Python object.
//! - `from_py_object` converts a Python object back to a Rust value.
//!
//! Requires the `serde-convert` feature.

mod de;
mod error;
mod ser;

#[cfg(test)]
mod tests;

pub use de::from_py_object;
pub use error::Error;
pub use ser::to_py_object;