From aed1b60b7481ab2f140b1c352e0bfca49b08aece Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 9 Feb 2025 17:52:32 -0800 Subject: [PATCH] Unset doc-scrape-examples for lib target False is the default value since Cargo PR 11499. --- Cargo.toml | 1 - unindent/Cargo.toml | 3 --- 2 files changed, 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f07d276..920b11c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,6 @@ rust-version = "1.56" [lib] proc-macro = true -doc-scrape-examples = false [dev-dependencies] rustversion = "1.0" diff --git a/unindent/Cargo.toml b/unindent/Cargo.toml index 6c18fdf..d7410a0 100644 --- a/unindent/Cargo.toml +++ b/unindent/Cargo.toml @@ -10,9 +10,6 @@ keywords = ["heredoc", "nowdoc", "multiline", "string", "literal"] license = "MIT OR Apache-2.0" repository = "https://github.com/dtolnay/indoc" -[lib] -doc-scrape-examples = false - [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] rustdoc-args = ["--generate-link-to-definition"]