From 9918693037dce8aa4bb6f08741b6812923486c18 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 19 Jun 2024 11:26:03 +0200 Subject: Merging upstream version 1.76.0+dfsg1. Signed-off-by: Daniel Baumann --- vendor/toml_edit/src/item.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'vendor/toml_edit/src/item.rs') diff --git a/vendor/toml_edit/src/item.rs b/vendor/toml_edit/src/item.rs index a14056319..b58806e47 100644 --- a/vendor/toml_edit/src/item.rs +++ b/vendor/toml_edit/src/item.rs @@ -329,6 +329,7 @@ impl Clone for Item { } } +#[cfg(feature = "parse")] impl FromStr for Item { type Err = crate::TomlError; @@ -339,6 +340,7 @@ impl FromStr for Item { } } +#[cfg(feature = "display")] impl std::fmt::Display for Item { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { match &self { @@ -358,6 +360,7 @@ impl std::fmt::Display for Item { /// /// # Examples /// ```rust +/// # #[cfg(feature = "display")] { /// # use snapbox::assert_eq; /// # use toml_edit::*; /// let mut table = Table::default(); @@ -372,6 +375,7 @@ impl std::fmt::Display for Item { /// key2 = 42 /// key3 = ["hello", '\, world'] /// "#); +/// # } /// ``` pub fn value>(v: V) -> Item { Item::Value(v.into()) -- cgit v1.2.3