diff --git a/cbc/Cargo.toml b/cbc/Cargo.toml index 493c38e..6fc68e2 100644 --- a/cbc/Cargo.toml +++ b/cbc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cbc" -version = "0.1.2" # Also update html_root_url in lib.rs when bumping this +version = "0.1.2" description = "Cipher Block Chaining (CBC) block cipher mode of operation" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/cbc/src/lib.rs b/cbc/src/lib.rs index d5b6cb4..c820b3f 100644 --- a/cbc/src/lib.rs +++ b/cbc/src/lib.rs @@ -88,9 +88,8 @@ #![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/cbc/0.1.2" + html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg" )] #![forbid(unsafe_code)] #![cfg_attr(docsrs, feature(doc_cfg))] diff --git a/cfb-mode/Cargo.toml b/cfb-mode/Cargo.toml index 82ffc81..e8529f3 100644 --- a/cfb-mode/Cargo.toml +++ b/cfb-mode/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cfb-mode" -version = "0.8.2" # Also update html_root_url in lib.rs when bumping this +version = "0.8.2" description = "Cipher Feedback (CFB) block cipher mode of operation" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/cfb-mode/src/lib.rs b/cfb-mode/src/lib.rs index c33d0b7..5291081 100644 --- a/cfb-mode/src/lib.rs +++ b/cfb-mode/src/lib.rs @@ -52,9 +52,8 @@ #![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/cfb-mode/0.8.1" + html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg" )] #![forbid(unsafe_code)] #![cfg_attr(docsrs, feature(doc_cfg))] diff --git a/cfb8/Cargo.toml b/cfb8/Cargo.toml index 551dad0..1178d9f 100644 --- a/cfb8/Cargo.toml +++ b/cfb8/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cfb8" -version = "0.8.1" # Also update html_root_url in lib.rs when bumping this +version = "0.8.1" description = "Cipher Feedback with eight bit feedback (CFB-8) block cipher mode of operation" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/cfb8/src/lib.rs b/cfb8/src/lib.rs index 5d69467..5091106 100644 --- a/cfb8/src/lib.rs +++ b/cfb8/src/lib.rs @@ -52,9 +52,8 @@ #![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/cfb8/0.8.1" + html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg" )] #![forbid(unsafe_code)] #![cfg_attr(docsrs, feature(doc_cfg))] diff --git a/ctr/Cargo.toml b/ctr/Cargo.toml index f6934db..9a0d599 100644 --- a/ctr/Cargo.toml +++ b/ctr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ctr" -version = "0.9.1" # Also update html_root_url in lib.rs when bumping this +version = "0.9.1" description = "CTR block modes of operation" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/ctr/src/lib.rs b/ctr/src/lib.rs index dd0e9c0..5b2d878 100644 --- a/ctr/src/lib.rs +++ b/ctr/src/lib.rs @@ -58,9 +58,8 @@ #![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/ctr/0.9.1" + html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg" )] #![forbid(unsafe_code)] #![cfg_attr(docsrs, feature(doc_cfg))] diff --git a/ige/Cargo.toml b/ige/Cargo.toml index 98566a1..396c4e4 100644 --- a/ige/Cargo.toml +++ b/ige/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ige" -version = "0.1.1" # Also update html_root_url in lib.rs when bumping this +version = "0.1.1" description = "Infinite Garble Extension (IGE) block cipher mode of operation" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/ige/src/lib.rs b/ige/src/lib.rs index 4a43f7c..978c3f9 100644 --- a/ige/src/lib.rs +++ b/ige/src/lib.rs @@ -87,9 +87,8 @@ #![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/ige/0.1.1" + html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg" )] #![forbid(unsafe_code)] #![cfg_attr(docsrs, feature(doc_cfg))] diff --git a/ofb/Cargo.toml b/ofb/Cargo.toml index a1133f6..43cc9d7 100644 --- a/ofb/Cargo.toml +++ b/ofb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ofb" -version = "0.6.1" # Also update html_root_url in lib.rs when bumping this +version = "0.6.1" description = "Output Feedback][OFB] (OFB) block cipher mode of operation" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/ofb/src/lib.rs b/ofb/src/lib.rs index b425a23..31b2231 100644 --- a/ofb/src/lib.rs +++ b/ofb/src/lib.rs @@ -56,9 +56,8 @@ #![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/ofb/0.6.1" + html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg" )] #![forbid(unsafe_code)] #![cfg_attr(docsrs, feature(doc_cfg))] diff --git a/pcbc/Cargo.toml b/pcbc/Cargo.toml index 4f8c5d2..6d52f4d 100644 --- a/pcbc/Cargo.toml +++ b/pcbc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pcbc" -version = "0.1.2" # Also update html_root_url in lib.rs when bumping this +version = "0.1.2" description = "Propagating Cipher Block Chaining (PCBC) block cipher mode of operation" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/pcbc/src/lib.rs b/pcbc/src/lib.rs index 499618e..a6d91e4 100644 --- a/pcbc/src/lib.rs +++ b/pcbc/src/lib.rs @@ -88,9 +88,8 @@ #![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/pcbc/0.1.2" + html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg" )] #![forbid(unsafe_code)] #![cfg_attr(docsrs, feature(doc_cfg))]