Adds tab indentation option for JSON files. (#4705)

This commit is contained in:
Daniel Reilly
2022-03-03 13:15:13 -05:00
committed by GitHub
parent 7d0531d270
commit 52f4c4ba7e
3 changed files with 49 additions and 2 deletions

View File

@ -3,7 +3,8 @@ pub use self::de::{
};
pub use self::error::{Error, ErrorCode, Result};
pub use self::ser::{
to_string, to_string_raw, to_string_with_indent, to_vec, to_writer, Serializer,
to_string, to_string_raw, to_string_with_indent, to_string_with_tab_indentation, to_vec,
to_writer, Serializer,
};
pub use self::value::{from_value, to_value, Map, Value};