Skip to content

Commit

Permalink
docs(toml): Mirror serde_json in inlining in root
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Jan 23, 2023
1 parent 226639c commit 709dd35
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/toml/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,13 +161,13 @@ mod edit;
mod fmt;
mod table;

#[doc(no_inline)]
#[cfg(feature = "parse")]
#[doc(inline)]
pub use crate::de::{from_str, Deserializer};
#[doc(no_inline)]
#[cfg(feature = "display")]
#[doc(inline)]
pub use crate::ser::{to_string, to_string_pretty, Serializer};
#[doc(no_inline)]
#[doc(inline)]
pub use crate::value::Value;

pub use serde_spanned::Spanned;
Expand Down

0 comments on commit 709dd35

Please sign in to comment.