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 <[email protected]>"]
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)]

md2/Cargo.toml

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

md2/src/lib.rs

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

md4/Cargo.toml

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

md4/src/lib.rs

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

md5/Cargo.toml

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

md5/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@
2626
#![no_std]
2727
#![doc(
2828
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
29-
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
30-
html_root_url = "https://docs.rs/md-5/0.10.1"
29+
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
3130
)]
3231
#![warn(missing_docs, rust_2018_idioms)]
3332

ripemd/Cargo.toml

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

ripemd/src/lib.rs

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

sha1/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[package]
22
name = "sha1"
3-
version = "0.10.2" # Also update html_root_url in lib.rs when bumping this
4-
# on v0.10.x releases also release the sha-1 crate as well
3+
version = "0.10.2" # on v0.10.x releases also release the sha-1 crate as well
54
description = "SHA-1 hash function"
65
authors = ["RustCrypto Developers"]
76
license = "MIT OR Apache-2.0"

sha1/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@
4444
#![cfg_attr(docsrs, feature(doc_cfg))]
4545
#![doc(
4646
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
47-
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
48-
html_root_url = "https://docs.rs/sha1/0.10.1"
47+
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
4948
)]
5049
#![warn(missing_docs, rust_2018_idioms)]
5150

sha2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sha2"
3-
version = "0.10.3" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.10.3"
44
description = """
55
Pure Rust implementation of the SHA-2 hash function family
66
including SHA-224, SHA-256, SHA-384, and SHA-512.

sha2/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@
4747
#![cfg_attr(docsrs, feature(doc_cfg))]
4848
#![doc(
4949
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
50-
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
51-
html_root_url = "https://docs.rs/sha2/0.10.2"
50+
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
5251
)]
5352
#![warn(missing_docs, rust_2018_idioms)]
5453

sha3/Cargo.toml

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

sha3/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,7 @@
5959
#![no_std]
6060
#![doc(
6161
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
62-
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
63-
html_root_url = "https://docs.rs/sha3/0.10.1"
62+
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
6463
)]
6564
#![forbid(unsafe_code)]
6665
#![warn(missing_docs, rust_2018_idioms)]

shabal/Cargo.toml

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

shabal/src/lib.rs

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

sm3/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sm3"
3-
version = "0.4.1" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.4.1"
44
description = "SM3 (OSCCA GM/T 0004-2012) hash function"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"

sm3/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@
3131
#![no_std]
3232
#![doc(
3333
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
34-
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
35-
html_root_url = "https://docs.rs/sm3/0.4.1"
34+
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
3635
)]
3736
#![forbid(unsafe_code)]
3837
#![warn(missing_docs, rust_2018_idioms)]

streebog/Cargo.toml

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

streebog/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@
3636
#![no_std]
3737
#![doc(
3838
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
39-
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
40-
html_root_url = "https://docs.rs/streebog/0.10.1"
39+
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
4140
)]
4241
#![forbid(unsafe_code)]
4342
#![warn(missing_docs, rust_2018_idioms)]

tiger/Cargo.toml

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

tiger/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/tiger/0.2.1"
31+
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
3332
)]
3433
#![forbid(unsafe_code)]
3534
#![warn(missing_docs, rust_2018_idioms)]

whirlpool/Cargo.toml

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

whirlpool/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@
3838
#![no_std]
3939
#![doc(
4040
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
41-
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
42-
html_root_url = "https://docs.rs/whirlpool/0.10.1"
41+
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
4342
)]
4443
#![warn(missing_docs, rust_2018_idioms)]
4544

0 commit comments

Comments
 (0)