From c265a70492c63355095fcab893d43f60b07425a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82=D1=91=D0=BC=20=D0=9F=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=BE=D0=B2?= Date: Tue, 30 Aug 2022 17:59:20 +0300 Subject: [PATCH] Remove html_root_url --- blake2/Cargo.toml | 2 +- blake2/src/lib.rs | 3 +-- fsb/Cargo.toml | 2 +- fsb/src/lib.rs | 3 +-- gost94/Cargo.toml | 2 +- gost94/src/lib.rs | 3 +-- groestl/Cargo.toml | 2 +- groestl/src/lib.rs | 3 +-- k12/Cargo.toml | 2 +- k12/src/lib.rs | 3 +-- md2/Cargo.toml | 2 +- md2/src/lib.rs | 3 +-- md4/Cargo.toml | 2 +- md4/src/lib.rs | 3 +-- md5/Cargo.toml | 2 +- md5/src/lib.rs | 3 +-- ripemd/Cargo.toml | 2 +- ripemd/src/lib.rs | 3 +-- sha1/Cargo.toml | 3 +-- sha1/src/lib.rs | 3 +-- sha2/Cargo.toml | 2 +- sha2/src/lib.rs | 3 +-- sha3/Cargo.toml | 2 +- sha3/src/lib.rs | 3 +-- shabal/Cargo.toml | 2 +- shabal/src/lib.rs | 3 +-- sm3/Cargo.toml | 2 +- sm3/src/lib.rs | 3 +-- streebog/Cargo.toml | 2 +- streebog/src/lib.rs | 3 +-- tiger/Cargo.toml | 2 +- tiger/src/lib.rs | 3 +-- whirlpool/Cargo.toml | 2 +- whirlpool/src/lib.rs | 3 +-- 34 files changed, 34 insertions(+), 52 deletions(-) diff --git a/blake2/Cargo.toml b/blake2/Cargo.toml index 48e83863..c4cd7282 100644 --- a/blake2/Cargo.toml +++ b/blake2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blake2" -version = "0.10.4" # Also update html_root_url in lib.rs when bumping this +version = "0.10.4" description = "BLAKE2 hash functions" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/blake2/src/lib.rs b/blake2/src/lib.rs index 6f7691c7..85a6b1c2 100644 --- a/blake2/src/lib.rs +++ b/blake2/src/lib.rs @@ -71,8 +71,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_root_url = "https://docs.rs/blake2/0.10.4" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg" )] #![warn(missing_docs, rust_2018_idioms)] #![cfg_attr(feature = "simd", feature(platform_intrinsics, repr_simd))] diff --git a/fsb/Cargo.toml b/fsb/Cargo.toml index 9dcd57dd..8efefe46 100644 --- a/fsb/Cargo.toml +++ b/fsb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fsb" -version = "0.1.2" # Also update html_root_url in lib.rs when bumping this +version = "0.1.2" description = "FSB hash function" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/fsb/src/lib.rs b/fsb/src/lib.rs index d7de8c3e..350fc112 100644 --- a/fsb/src/lib.rs +++ b/fsb/src/lib.rs @@ -40,8 +40,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_root_url = "https://docs.rs/fsb/0.1.2" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg" )] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms)] diff --git a/gost94/Cargo.toml b/gost94/Cargo.toml index 7ea722fa..dde4786a 100644 --- a/gost94/Cargo.toml +++ b/gost94/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gost94" -version = "0.10.2" # Also update html_root_url in lib.rs when bumping this +version = "0.10.2" description = "GOST R 34.11-94 hash function" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/gost94/src/lib.rs b/gost94/src/lib.rs index 907b8094..9808606c 100644 --- a/gost94/src/lib.rs +++ b/gost94/src/lib.rs @@ -27,8 +27,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_root_url = "https://docs.rs/gost94/0.10.2" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg" )] #![warn(missing_docs, rust_2018_idioms)] #![forbid(unsafe_code)] diff --git a/groestl/Cargo.toml b/groestl/Cargo.toml index 03a21257..463078c1 100644 --- a/groestl/Cargo.toml +++ b/groestl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "groestl" -version = "0.10.1" # Also update html_root_url in lib.rs when bumping this +version = "0.10.1" description = "Grøstl hash function" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/groestl/src/lib.rs b/groestl/src/lib.rs index 0f3d077a..fce24975 100644 --- a/groestl/src/lib.rs +++ b/groestl/src/lib.rs @@ -28,8 +28,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_root_url = "https://docs.rs/groestl/0.10.1" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg" )] #![forbid(unsafe_code)] #![warn(rust_2018_idioms)] diff --git a/k12/Cargo.toml b/k12/Cargo.toml index 8d7a9e9b..ada20f48 100644 --- a/k12/Cargo.toml +++ b/k12/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "k12" -version = "0.2.1" # Also update html_root_url in lib.rs when bumping this +version = "0.2.1" description = "Experimental pure Rust implementation of the KangarooTwelve hash function" authors = ["Diggory Hardy "] license = "Apache-2.0 OR MIT" diff --git a/k12/src/lib.rs b/k12/src/lib.rs index b05b01b2..a85ee25a 100644 --- a/k12/src/lib.rs +++ b/k12/src/lib.rs @@ -11,8 +11,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_root_url = "https://docs.rs/k12/0.2.1" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg" )] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms)] diff --git a/md2/Cargo.toml b/md2/Cargo.toml index c07f65b1..4036deab 100644 --- a/md2/Cargo.toml +++ b/md2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "md2" -version = "0.10.1" # Also update html_root_url in lib.rs when bumping this +version = "0.10.1" license = "MIT OR Apache-2.0" authors = ["RustCrypto Developers"] description = "MD2 hash function" diff --git a/md2/src/lib.rs b/md2/src/lib.rs index 8ae32986..3e03d5c3 100644 --- a/md2/src/lib.rs +++ b/md2/src/lib.rs @@ -26,8 +26,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_root_url = "https://docs.rs/md2/0.10.1" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg" )] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms)] diff --git a/md4/Cargo.toml b/md4/Cargo.toml index de8e3e98..e7a485a7 100644 --- a/md4/Cargo.toml +++ b/md4/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "md4" -version = "0.10.1" # Also update html_root_url in lib.rs when bumping this +version = "0.10.1" description = "MD4 hash function" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/md4/src/lib.rs b/md4/src/lib.rs index f643f9a8..065d3ed7 100644 --- a/md4/src/lib.rs +++ b/md4/src/lib.rs @@ -26,8 +26,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_root_url = "https://docs.rs/md4/0.10.1" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg" )] #![forbid(unsafe_code)] #![warn(rust_2018_idioms)] diff --git a/md5/Cargo.toml b/md5/Cargo.toml index d874e84a..3102d718 100644 --- a/md5/Cargo.toml +++ b/md5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "md-5" -version = "0.10.2" # Also update html_root_url in lib.rs when bumping this +version = "0.10.2" description = "MD5 hash function" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/md5/src/lib.rs b/md5/src/lib.rs index 3a997016..a1640821 100644 --- a/md5/src/lib.rs +++ b/md5/src/lib.rs @@ -26,8 +26,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_root_url = "https://docs.rs/md-5/0.10.1" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg" )] #![warn(missing_docs, rust_2018_idioms)] diff --git a/ripemd/Cargo.toml b/ripemd/Cargo.toml index ea673411..e0bef669 100644 --- a/ripemd/Cargo.toml +++ b/ripemd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ripemd" -version = "0.1.1" # Also update html_root_url in lib.rs when bumping this +version = "0.1.1" description = "Pure Rust implementation of the RIPEMD hash functions" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/ripemd/src/lib.rs b/ripemd/src/lib.rs index 796e33f1..fb993a0e 100644 --- a/ripemd/src/lib.rs +++ b/ripemd/src/lib.rs @@ -41,8 +41,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_root_url = "https://docs.rs/ripemd/0.1.1" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg" )] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms)] diff --git a/sha1/Cargo.toml b/sha1/Cargo.toml index 379e9e29..80d75ab7 100644 --- a/sha1/Cargo.toml +++ b/sha1/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "sha1" -version = "0.10.2" # Also update html_root_url in lib.rs when bumping this -# on v0.10.x releases also release the sha-1 crate as well +version = "0.10.2" # on v0.10.x releases also release the sha-1 crate as well description = "SHA-1 hash function" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/sha1/src/lib.rs b/sha1/src/lib.rs index 9a20a01a..6a8d5250 100644 --- a/sha1/src/lib.rs +++ b/sha1/src/lib.rs @@ -44,8 +44,7 @@ #![cfg_attr(docsrs, feature(doc_cfg))] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_root_url = "https://docs.rs/sha1/0.10.1" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg" )] #![warn(missing_docs, rust_2018_idioms)] diff --git a/sha2/Cargo.toml b/sha2/Cargo.toml index 07b37c31..473dd899 100644 --- a/sha2/Cargo.toml +++ b/sha2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sha2" -version = "0.10.3" # Also update html_root_url in lib.rs when bumping this +version = "0.10.3" description = """ Pure Rust implementation of the SHA-2 hash function family including SHA-224, SHA-256, SHA-384, and SHA-512. diff --git a/sha2/src/lib.rs b/sha2/src/lib.rs index 6eeec46e..cd194ea0 100644 --- a/sha2/src/lib.rs +++ b/sha2/src/lib.rs @@ -47,8 +47,7 @@ #![cfg_attr(docsrs, feature(doc_cfg))] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_root_url = "https://docs.rs/sha2/0.10.2" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg" )] #![warn(missing_docs, rust_2018_idioms)] diff --git a/sha3/Cargo.toml b/sha3/Cargo.toml index 45e7c2bc..5b768e1f 100644 --- a/sha3/Cargo.toml +++ b/sha3/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sha3" -version = "0.10.2" # Also update html_root_url in lib.rs when bumping this +version = "0.10.2" description = "SHA-3 (Keccak) hash function" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/sha3/src/lib.rs b/sha3/src/lib.rs index b6eb8f7c..5e4884f3 100644 --- a/sha3/src/lib.rs +++ b/sha3/src/lib.rs @@ -59,8 +59,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_root_url = "https://docs.rs/sha3/0.10.1" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg" )] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms)] diff --git a/shabal/Cargo.toml b/shabal/Cargo.toml index 2b7b6297..dc5d0dbe 100644 --- a/shabal/Cargo.toml +++ b/shabal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shabal" -version = "0.4.1" # Also update html_root_url in lib.rs when bumping this +version = "0.4.1" description = "Shabal hash functions" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/shabal/src/lib.rs b/shabal/src/lib.rs index b877c8b5..9329692b 100644 --- a/shabal/src/lib.rs +++ b/shabal/src/lib.rs @@ -39,8 +39,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_root_url = "https://docs.rs/shabal/0.4.1" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg" )] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms)] diff --git a/sm3/Cargo.toml b/sm3/Cargo.toml index f49427ff..0de39ecc 100644 --- a/sm3/Cargo.toml +++ b/sm3/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sm3" -version = "0.4.1" # Also update html_root_url in lib.rs when bumping this +version = "0.4.1" description = "SM3 (OSCCA GM/T 0004-2012) hash function" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/sm3/src/lib.rs b/sm3/src/lib.rs index 0e1e5c9f..32cfb13c 100644 --- a/sm3/src/lib.rs +++ b/sm3/src/lib.rs @@ -31,8 +31,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_root_url = "https://docs.rs/sm3/0.4.1" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg" )] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms)] diff --git a/streebog/Cargo.toml b/streebog/Cargo.toml index dddfa1f7..13bf5d6a 100644 --- a/streebog/Cargo.toml +++ b/streebog/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "streebog" -version = "0.10.1" # Also update html_root_url in lib.rs when bumping this +version = "0.10.1" description = "Streebog (GOST R 34.11-2012) hash function" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/streebog/src/lib.rs b/streebog/src/lib.rs index 1ff6b491..0ec99eef 100644 --- a/streebog/src/lib.rs +++ b/streebog/src/lib.rs @@ -36,8 +36,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_root_url = "https://docs.rs/streebog/0.10.1" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg" )] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms)] diff --git a/tiger/Cargo.toml b/tiger/Cargo.toml index 951e4bab..f2429c5e 100644 --- a/tiger/Cargo.toml +++ b/tiger/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tiger" -version = "0.2.1" # Also update html_root_url in lib.rs when bumping this +version = "0.2.1" description = "Tiger hash function" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/tiger/src/lib.rs b/tiger/src/lib.rs index b605b7b5..a5f1f8d8 100644 --- a/tiger/src/lib.rs +++ b/tiger/src/lib.rs @@ -28,8 +28,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_root_url = "https://docs.rs/tiger/0.2.1" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg" )] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms)] diff --git a/whirlpool/Cargo.toml b/whirlpool/Cargo.toml index 65cb318b..40907b95 100644 --- a/whirlpool/Cargo.toml +++ b/whirlpool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "whirlpool" -version = "0.10.2" # Also update html_root_url in lib.rs when bumping this +version = "0.10.2" description = "Whirlpool hash function" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/whirlpool/src/lib.rs b/whirlpool/src/lib.rs index 62f863ea..b5f0ff32 100644 --- a/whirlpool/src/lib.rs +++ b/whirlpool/src/lib.rs @@ -38,8 +38,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_root_url = "https://docs.rs/whirlpool/0.10.1" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg" )] #![warn(missing_docs, rust_2018_idioms)]