Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

expose deserialize convenience methods #257

Closed
wants to merge 9 commits into from
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ pub mod value;

pub mod extensions;

pub use de::{from_str, Deserializer};
pub use de::{from_bytes, from_reader, from_str, Deserializer};
mainrs marked this conversation as resolved.
Show resolved Hide resolved
pub use error::{Error, Result};
pub use ser::{to_string, Serializer};
pub use ser::{to_string, to_string_pretty, to_writer, Serializer};
pub use value::{Map, Number, Value};

mod parse;