1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*!
Implementation detail for `value-bag`; it should not be depended on directly.
*/

#![no_std]

pub use erased_serde as erased;
pub use serde as lib;
pub use serde_fmt as fmt;

#[cfg(feature = "owned")]
pub use serde_buf as buf;

#[cfg(feature = "json")]
pub use serde_json as json;

#[cfg(feature = "test")]
pub use serde_test as test;