From b7f381692f9cfc5d8c195a4827887f29f0eaa5fc Mon Sep 17 00:00:00 2001 From: Mira Ressel Date: Wed, 11 Oct 2023 16:39:54 +0200 Subject: [PATCH] chore: disable rustdoc::redundant_explicit_links warning --- .cargo/config.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 5922e9f11daab..a000287837b0e 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,4 +1,8 @@ -# +[build] +rustdocflags = [ + "-Arustdoc::redundant_explicit_links", # stylistic +] + # An auto defined `clippy` feature was introduced, # but it was found to clash with user defined features, # so was renamed to `cargo-clippy`.