From eb90250ae903ae9283ea6178202ef1421273fbea Mon Sep 17 00:00:00 2001 From: Diego Barrios Romero Date: Fri, 19 Nov 2021 11:46:58 +0100 Subject: [PATCH] Remove html_root_url as it is not recommended anymore. cc: https://github.com/rust-lang/api-guidelines/pull/230 --- Cargo.toml | 2 +- src/lib.rs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3673df292..1c6938e61 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ license = "MIT OR Apache-2.0" name = "embedded-hal" readme = "README.md" repository = "https://github.com/rust-embedded/embedded-hal" -version = "1.0.0-alpha.5" # remember to update html_root_url +version = "1.0.0-alpha.5" [dependencies] nb = "1" diff --git a/src/lib.rs b/src/lib.rs index 05b6ad5a7..3e559ee13 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -402,7 +402,6 @@ //! # fn main() {} //! ``` -#![doc(html_root_url = "https://docs.rs/embedded-hal/1.0.0-alpha.5")] #![deny(missing_docs)] #![no_std]