Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Commit

Permalink
Merge pull request #186 from dtolnay/serializer
Browse files Browse the repository at this point in the history
Add a Serializer
  • Loading branch information
dtolnay committed Feb 2, 2021
2 parents 4d57735 + fd828cb commit b5da67e
Show file tree
Hide file tree
Showing 3 changed files with 415 additions and 13 deletions.
3 changes: 2 additions & 1 deletion src/lib.rs
Expand Up @@ -74,6 +74,7 @@
// things are often more readable this way
clippy::cast_lossless,
clippy::module_name_repetitions,
clippy::needless_pass_by_value,
clippy::option_if_let_else,
clippy::single_match_else,
clippy::use_self,
Expand All @@ -99,7 +100,7 @@

pub use crate::de::{from_reader, from_slice, from_str, Deserializer};
pub use crate::error::{Error, Location, Result};
pub use crate::ser::{to_string, to_vec, to_writer};
pub use crate::ser::{to_string, to_vec, to_writer, Serializer};
pub use crate::value::{from_value, to_value, Index, Number, Sequence, Value};

#[doc(inline)]
Expand Down

0 comments on commit b5da67e

Please sign in to comment.