Skip to content

Commit

Permalink
Forward serde_json::value::RawValue to serde_json::RawValue
Browse files Browse the repository at this point in the history
  • Loading branch information
bheylin committed Nov 8, 2024
1 parent 7cce517 commit 58c2ffa
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,9 @@ pub use crate::ser::{to_string, to_string_pretty, to_vec, to_vec_pretty};
pub use crate::ser::{to_writer, to_writer_pretty, Serializer};
#[doc(inline)]
pub use crate::value::{from_value, to_value, Map, Number, Value};
#[cfg(feature = "raw_value")]
#[doc(inline)]
pub use crate::value::{to_raw_value, RawValue};

// We only use our own error type; no need for From conversions provided by the
// standard library's try! macro. This reduces lines of LLVM IR by 4%.
Expand Down

0 comments on commit 58c2ffa

Please sign in to comment.