value_bag_sval2/lib.rs
1/*!
2Implementation detail for `value-bag`; it should not be depended on directly.
3*/
4
5#![no_std]
6
7pub use sval as lib;
8pub use sval_buffer as buffer;
9pub use sval_dynamic as dynamic;
10pub use sval_fmt as fmt;
11pub use sval_ref as lib_ref;
12
13#[cfg(feature = "serde1")]
14pub use sval_serde as serde1;
15
16#[cfg(feature = "json")]
17pub use sval_json as json;
18
19#[cfg(feature = "test")]
20pub use sval_test as test;