diff --git a/bp256/Cargo.toml b/bp256/Cargo.toml index ead0d34b..c09fccf7 100644 --- a/bp256/Cargo.toml +++ b/bp256/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bp256" -version = "0.4.0" # Also update html_root_url in lib.rs when bumping this +version = "0.4.0" description = "Brainpool P-256 (brainpoolP256r1 and brainpoolP256t1) elliptic curves" authors = ["RustCrypto Developers"] license = "Apache-2.0 OR MIT" diff --git a/bp256/src/lib.rs b/bp256/src/lib.rs index a9ff1923..7e3de358 100644 --- a/bp256/src/lib.rs +++ b/bp256/src/lib.rs @@ -3,8 +3,7 @@ #![doc = include_str!("../README.md")] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", - html_root_url = "https://docs.rs/bp256/0.4.0-pre" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg" )] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms, unused_qualifications)] diff --git a/bp384/Cargo.toml b/bp384/Cargo.toml index a25a697c..94395dc6 100644 --- a/bp384/Cargo.toml +++ b/bp384/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bp384" -version = "0.4.0" # Also update html_root_url in lib.rs when bumping this +version = "0.4.0" description = "Brainpool P-384 (brainpoolP384r1 and brainpoolP384t1) elliptic curves" authors = ["RustCrypto Developers"] license = "Apache-2.0 OR MIT" diff --git a/bp384/src/lib.rs b/bp384/src/lib.rs index fe858f48..03fdda2b 100644 --- a/bp384/src/lib.rs +++ b/bp384/src/lib.rs @@ -3,8 +3,7 @@ #![doc = include_str!("../README.md")] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", - html_root_url = "https://docs.rs/bp384/0.4.0-pre" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg" )] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms, unused_qualifications)] diff --git a/k256/Cargo.toml b/k256/Cargo.toml index 41254589..a07396f9 100644 --- a/k256/Cargo.toml +++ b/k256/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "k256" -version = "0.11.0-pre.0" # Also update html_root_url in lib.rs when bumping this +version = "0.11.0-pre.0" description = """ secp256k1 elliptic curve library written in pure Rust with support for ECDSA signing/verification (including Ethereum-style signatures with public-key diff --git a/k256/src/lib.rs b/k256/src/lib.rs index 013cfbe0..cbd66dd9 100644 --- a/k256/src/lib.rs +++ b/k256/src/lib.rs @@ -3,8 +3,7 @@ #![doc = include_str!("../README.md")] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", - html_root_url = "https://docs.rs/k256/0.11.0-pre.0" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg" )] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms, unused_qualifications)] diff --git a/p256/Cargo.toml b/p256/Cargo.toml index 91376419..b3143f08 100644 --- a/p256/Cargo.toml +++ b/p256/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "p256" -version = "0.11.0-pre.0" # Also update html_root_url in lib.rs when bumping this +version = "0.11.0-pre.0" description = """ Pure Rust implementation of the NIST P-256 (a.k.a. secp256r1, prime256v1) elliptic curve with support for ECDH, ECDSA signing/verification, and general diff --git a/p256/src/lib.rs b/p256/src/lib.rs index a0d2247e..258fd727 100644 --- a/p256/src/lib.rs +++ b/p256/src/lib.rs @@ -2,8 +2,7 @@ #![cfg_attr(docsrs, feature(doc_cfg))] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", - html_root_url = "https://docs.rs/p256/0.11.0-pre.0" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg" )] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms, unused_qualifications)] diff --git a/p384/Cargo.toml b/p384/Cargo.toml index 895fc9e2..c6b8433f 100644 --- a/p384/Cargo.toml +++ b/p384/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "p384" -version = "0.10.0-pre" # Also update html_root_url in lib.rs when bumping this +version = "0.10.0-pre" description = "NIST P-384 (secp384r1) elliptic curve" authors = ["RustCrypto Developers"] license = "Apache-2.0 OR MIT" diff --git a/p384/src/lib.rs b/p384/src/lib.rs index bff3753b..ced25371 100644 --- a/p384/src/lib.rs +++ b/p384/src/lib.rs @@ -3,8 +3,7 @@ #![doc = include_str!("../README.md")] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", - html_root_url = "https://docs.rs/p384/0.10.0-pre" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg" )] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms, unused_qualifications)]