From 36920b198e21d694a62b4090448c85eb84633226 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Wed, 19 Feb 2025 22:36:08 -0800 Subject: [PATCH] Combine rustdoc semver exempt cfg into one argument --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d4134c2..856132e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,8 +13,8 @@ repository = "https://github.com/dtolnay/proc-macro2" rust-version = "1.56" [package.metadata.docs.rs] -rustc-args = ["--cfg", "procmacro2_semver_exempt"] -rustdoc-args = ["--cfg", "procmacro2_semver_exempt", "--generate-link-to-definition"] +rustc-args = ["--cfg=procmacro2_semver_exempt"] +rustdoc-args = ["--cfg=procmacro2_semver_exempt", "--generate-link-to-definition"] targets = ["x86_64-unknown-linux-gnu"] [package.metadata.playground]