1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod de;
mod error;
mod pylit;
mod ser;

/// Re-export of `pyo3` crate.
pub use pyo3;

pub use de::from_pyobject;
pub use error::Error;
pub use ser::to_pyobject;

#[cfg_attr(doc, doc = include_str!("../README.md"))]
mod readme {}