Skip to content

Commit b74be34

Browse files
authored
Remove html_root_url (#393)
1 parent 38ea355 commit b74be34

File tree

34 files changed

+34
-52
lines changed

34 files changed

+34
-52
lines changed

blake2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "blake2"
3-
version = "0.10.4" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.10.4"
44
description = "BLAKE2 hash functions"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"

blake2/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,7 @@
7171
#![no_std]
7272
#![doc(
7373
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
74-
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
75-
html_root_url = "https://docs.rs/blake2/0.10.4"
74+
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
7675
)]
7776
#![warn(missing_docs, rust_2018_idioms)]
7877
#![cfg_attr(feature = "simd", feature(platform_intrinsics, repr_simd))]

fsb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fsb"
3-
version = "0.1.2" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.1.2"
44
description = "FSB hash function"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"

fsb/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@
4040
#![no_std]
4141
#![doc(
4242
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
43-
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
44-
html_root_url = "https://docs.rs/fsb/0.1.2"
43+
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
4544
)]
4645
#![forbid(unsafe_code)]
4746
#![warn(missing_docs, rust_2018_idioms)]

gost94/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gost94"
3-
version = "0.10.2" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.10.2"
44
description = "GOST R 34.11-94 hash function"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"

gost94/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@
2727
#![no_std]
2828
#![doc(
2929
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
30-
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
31-
html_root_url = "https://docs.rs/gost94/0.10.2"
30+
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
3231
)]
3332
#![warn(missing_docs, rust_2018_idioms)]
3433
#![forbid(unsafe_code)]

groestl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "groestl"
3-
version = "0.10.1" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.10.1"
44
description = "Grøstl hash function"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"

groestl/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
#![no_std]
2929
#![doc(
3030
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
31-
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
32-
html_root_url = "https://docs.rs/groestl/0.10.1"
31+
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
3332
)]
3433
#![forbid(unsafe_code)]
3534
#![warn(rust_2018_idioms)]

k12/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "k12"
3-
version = "0.2.1" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.2.1"
44
description = "Experimental pure Rust implementation of the KangarooTwelve hash function"
55
authors = ["Diggory Hardy <github1@dhardy.name>"]
66
license = "Apache-2.0 OR MIT"

k12/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111
#![no_std]
1212
#![doc(
1313
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
14-
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
15-
html_root_url = "https://docs.rs/k12/0.2.1"
14+
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
1615
)]
1716
#![forbid(unsafe_code)]
1817
#![warn(missing_docs, rust_2018_idioms)]

0 commit comments

Comments
 (0)