From 48242cc25cf9fa8af87acef6deb5b5edde1265f9 Mon Sep 17 00:00:00 2001 From: Artyom Pavlov Date: Thu, 27 Oct 2022 04:28:30 +0000 Subject: [PATCH] Remove html_root_url (#344) --- aes/Cargo.toml | 2 +- aes/src/lib.rs | 3 +-- blowfish/Cargo.toml | 2 +- blowfish/src/lib.rs | 3 +-- cast5/Cargo.toml | 2 +- cast5/src/lib.rs | 3 +-- des/Cargo.toml | 2 +- des/src/lib.rs | 3 +-- idea/Cargo.toml | 2 +- idea/src/lib.rs | 3 +-- kuznyechik/Cargo.toml | 2 +- kuznyechik/src/lib.rs | 3 +-- magma/Cargo.toml | 2 +- magma/src/lib.rs | 3 +-- rc2/Cargo.toml | 2 +- rc2/src/lib.rs | 3 +-- serpent/Cargo.toml | 2 +- serpent/src/lib.rs | 3 +-- sm4/Cargo.toml | 2 +- sm4/src/lib.rs | 3 +-- threefish/Cargo.toml | 2 +- threefish/src/lib.rs | 3 +-- twofish/Cargo.toml | 2 +- twofish/src/lib.rs | 3 +-- 24 files changed, 24 insertions(+), 36 deletions(-) diff --git a/aes/Cargo.toml b/aes/Cargo.toml index 8baf16c5..ebf04157 100644 --- a/aes/Cargo.toml +++ b/aes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aes" -version = "0.8.2" # Also update html_root_url in lib.rs when bumping this +version = "0.8.2" description = "Pure Rust implementation of the Advanced Encryption Standard (a.k.a. Rijndael)" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/aes/src/lib.rs b/aes/src/lib.rs index e5bff4ca..f43b21c9 100644 --- a/aes/src/lib.rs +++ b/aes/src/lib.rs @@ -115,8 +115,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", - html_root_url = "https://docs.rs/aes/0.8.1" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs, rust_2018_idioms)] diff --git a/blowfish/Cargo.toml b/blowfish/Cargo.toml index af43a71f..f7e795e8 100644 --- a/blowfish/Cargo.toml +++ b/blowfish/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blowfish" -version = "0.9.1" # Also update html_root_url in lib.rs when bumping this +version = "0.9.1" description = "Blowfish block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/blowfish/src/lib.rs b/blowfish/src/lib.rs index f95ba0b1..ad18fbe8 100644 --- a/blowfish/src/lib.rs +++ b/blowfish/src/lib.rs @@ -13,8 +13,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", - html_root_url = "https://docs.rs/blowfish/0.9.1" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] #![cfg_attr(docsrs, feature(doc_cfg))] diff --git a/cast5/Cargo.toml b/cast5/Cargo.toml index 0d3e1c19..d2884a7e 100644 --- a/cast5/Cargo.toml +++ b/cast5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cast5" -version = "0.11.1" # Also update html_root_url in lib.rs when bumping this +version = "0.11.1" description = "CAST5 block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/cast5/src/lib.rs b/cast5/src/lib.rs index b8e7aded..40bbbd13 100644 --- a/cast5/src/lib.rs +++ b/cast5/src/lib.rs @@ -33,8 +33,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", - html_root_url = "https://docs.rs/cast5/0.11.1" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] #![cfg_attr(docsrs, feature(doc_cfg))] diff --git a/des/Cargo.toml b/des/Cargo.toml index 1a51a2a0..17238d12 100644 --- a/des/Cargo.toml +++ b/des/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "des" -version = "0.8.1" # Also update html_root_url in lib.rs when bumping this +version = "0.8.1" description = "DES and Triple DES (3DES, TDES) block ciphers implementation" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/des/src/lib.rs b/des/src/lib.rs index 0a47946d..323406e9 100644 --- a/des/src/lib.rs +++ b/des/src/lib.rs @@ -15,8 +15,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", - html_root_url = "https://docs.rs/des/0.8.1" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] #![cfg_attr(docsrs, feature(doc_cfg))] diff --git a/idea/Cargo.toml b/idea/Cargo.toml index 80e6158c..39575264 100644 --- a/idea/Cargo.toml +++ b/idea/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "idea" -version = "0.5.1" # Also update html_root_url in lib.rs when bumping this +version = "0.5.1" description = "IDEA block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/idea/src/lib.rs b/idea/src/lib.rs index 56d0ab6e..2878f2a4 100644 --- a/idea/src/lib.rs +++ b/idea/src/lib.rs @@ -13,8 +13,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", - html_root_url = "https://docs.rs/idea/0.5.1" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] #![cfg_attr(docsrs, feature(doc_cfg))] diff --git a/kuznyechik/Cargo.toml b/kuznyechik/Cargo.toml index 276d2f1f..1905098b 100644 --- a/kuznyechik/Cargo.toml +++ b/kuznyechik/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kuznyechik" -version = "0.8.1" # Also update html_root_url in lib.rs when bumping this +version = "0.8.1" description = "Kuznyechik (GOST R 34.12-2015) block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/kuznyechik/src/lib.rs b/kuznyechik/src/lib.rs index a0961196..af86f80e 100644 --- a/kuznyechik/src/lib.rs +++ b/kuznyechik/src/lib.rs @@ -23,8 +23,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", - html_root_url = "https://docs.rs/kuznyechik/0.8.1" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs, rust_2018_idioms)] diff --git a/magma/Cargo.toml b/magma/Cargo.toml index f2c1d387..b5b851b6 100644 --- a/magma/Cargo.toml +++ b/magma/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "magma" -version = "0.8.1" # Also update html_root_url in lib.rs when bumping this +version = "0.8.1" description = "Magma (GOST R 34.12-2015) block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/magma/src/lib.rs b/magma/src/lib.rs index 46f7fc5b..8b95acc9 100644 --- a/magma/src/lib.rs +++ b/magma/src/lib.rs @@ -41,8 +41,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", - html_root_url = "https://docs.rs/magma/0.8.1" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] #![cfg_attr(docsrs, feature(doc_cfg))] diff --git a/rc2/Cargo.toml b/rc2/Cargo.toml index d5069f33..e035bb77 100644 --- a/rc2/Cargo.toml +++ b/rc2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rc2" -version = "0.8.1" # Also update html_root_url in lib.rs when bumping this +version = "0.8.1" description = "RC2 block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/rc2/src/lib.rs b/rc2/src/lib.rs index 4f042ce3..0756866c 100644 --- a/rc2/src/lib.rs +++ b/rc2/src/lib.rs @@ -13,8 +13,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", - html_root_url = "https://docs.rs/rc2/0.8.1" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] #![cfg_attr(docsrs, feature(doc_cfg))] diff --git a/serpent/Cargo.toml b/serpent/Cargo.toml index 5bec4706..b9ced5c3 100644 --- a/serpent/Cargo.toml +++ b/serpent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serpent" -version = "0.5.1" # Also update html_root_url in lib.rs when bumping this +version = "0.5.1" description = "Serpent block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/serpent/src/lib.rs b/serpent/src/lib.rs index afdd062a..ad1c7e63 100644 --- a/serpent/src/lib.rs +++ b/serpent/src/lib.rs @@ -13,8 +13,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", - html_root_url = "https://docs.rs/serpent/0.5.1" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] #![cfg_attr(docsrs, feature(doc_cfg))] diff --git a/sm4/Cargo.toml b/sm4/Cargo.toml index 4d4b9e91..08e8c6b4 100644 --- a/sm4/Cargo.toml +++ b/sm4/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sm4" -version = "0.5.1" # Also update html_root_url in lib.rs when bumping this +version = "0.5.1" description = "SM4 block cipher algorithm" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/sm4/src/lib.rs b/sm4/src/lib.rs index d79d546f..2596cf27 100644 --- a/sm4/src/lib.rs +++ b/sm4/src/lib.rs @@ -13,8 +13,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", - html_root_url = "https://docs.rs/sm4/0.5.1" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] #![cfg_attr(docsrs, feature(doc_cfg))] diff --git a/threefish/Cargo.toml b/threefish/Cargo.toml index 454106ee..02c5e2c8 100644 --- a/threefish/Cargo.toml +++ b/threefish/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "threefish" -version = "0.5.1" # Also update html_root_url in lib.rs when bumping this +version = "0.5.1" description = "Threefish block cipher" authors = ["The Rust-Crypto Project Developers"] license = "MIT OR Apache-2.0" diff --git a/threefish/src/lib.rs b/threefish/src/lib.rs index 35121488..57427499 100644 --- a/threefish/src/lib.rs +++ b/threefish/src/lib.rs @@ -13,8 +13,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", - html_root_url = "https://docs.rs/threefish/0.5.1" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] #![cfg_attr(docsrs, feature(doc_cfg))] diff --git a/twofish/Cargo.toml b/twofish/Cargo.toml index 66d132ce..38419285 100644 --- a/twofish/Cargo.toml +++ b/twofish/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "twofish" -version = "0.7.1" # Also update html_root_url in lib.rs when bumping this +version = "0.7.1" description = "Twofish block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/twofish/src/lib.rs b/twofish/src/lib.rs index de60e12c..e5e95f88 100644 --- a/twofish/src/lib.rs +++ b/twofish/src/lib.rs @@ -13,8 +13,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg", - html_root_url = "https://docs.rs/twofish/0.7.1" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg" )] #![deny(unsafe_code)] #![cfg_attr(docsrs, feature(doc_cfg))]