]> git.proxmox.com Git - perlmod.git/blame - perlmod/src/lib.rs
test: add explaining comment
[perlmod.git] / perlmod / src / lib.rs
CommitLineData
f7cc8c37
WB
1pub(crate) mod error;
2
3pub mod de;
4pub mod ffi;
5pub mod ser;
6
7#[doc(inline)]
8pub use de::from_value;
9#[doc(inline)]
10pub use ser::to_value;
11
12pub mod scalar;
13#[doc(inline)]
14pub use scalar::{Mortal, Scalar};
15
16pub mod array;
17#[doc(inline)]
18pub use array::Array;
19
20pub mod hash;
21#[doc(inline)]
22pub use hash::Hash;
23
24pub mod value;
25#[doc(inline)]
26pub use value::Value;
27
28#[cfg(feature = "exporter")]
06a18771 29pub use perlmod_macro::{export, make_package, package};