From 1672c0dffb74d225b2e2d87b3d82bb1d2cb6d14d Mon Sep 17 00:00:00 2001 From: Diego Barrios Romero Date: Tue, 27 Jun 2023 07:29:02 +0200 Subject: [PATCH] Remove html_root_url --- Cargo.toml | 4 +--- src/lib.rs | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a118089d..2de32107 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,6 @@ [package] name = "bitflags" -# NB: When modifying, also modify: -# 1. html_root_url in lib.rs -# 2. number in readme (for breaking changes) +# NB: When modifying, also modify the number in readme (for breaking changes) version = "2.3.3" edition = "2021" rust-version = "1.56.0" diff --git a/src/lib.rs b/src/lib.rs index bac1d196..81785f3d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -423,7 +423,6 @@ #![cfg_attr(not(any(feature = "std", test)), no_std)] #![cfg_attr(not(test), forbid(unsafe_code))] #![cfg_attr(test, allow(mixed_script_confusables))] -#![doc(html_root_url = "https://docs.rs/bitflags/2.3.3")] #[doc(inline)] pub use traits::{Bits, Flag, Flags};