Preserve order when serializing/deserialize json by default. (#3126)

This commit is contained in:
Andrés N. Robalino
2021-03-04 00:35:13 -06:00
committed by GitHub
parent 9c375b33a6
commit 0b71e45072
118 changed files with 2487 additions and 1322 deletions

View File

@ -5,9 +5,6 @@ pub use self::error::{Error, ErrorCode, Result};
pub use self::ser::{to_string, to_vec, to_writer, Serializer};
pub use self::value::{from_value, to_value, Map, Value};
#[macro_use]
mod forward;
pub mod builder;
pub mod de;
pub mod error;