value_bag_serde1/
lib.rs

1/*!
2Implementation detail for `value-bag`; it should not be depended on directly.
3*/
4
5#![no_std]
6
7pub use erased_serde as erased;
8pub use serde as lib;
9pub use serde_fmt as fmt;
10
11#[cfg(feature = "owned")]
12pub use serde_buf as buf;
13
14#[cfg(feature = "json")]
15pub use serde_json as json;
16
17#[cfg(feature = "test")]
18pub use serde_test as test;