rusty_value/
lib.rs

1#![doc=include_str!("../README.md")]
2
3pub(crate) mod formats;
4pub(crate) mod value;
5pub(crate) mod value_trait;
6pub use formats::*;
7pub use value::*;
8pub use value_trait::*;
9
10#[doc(inline)]
11#[allow(unused_imports)]
12#[cfg(feature = "derive")]
13#[cfg_attr(docsrs, doc(cfg(feature = "derive")))]
14pub use rusty_value_derive::*;