Skip to content

Commit

Permalink
Remove html_root_url and update logo URL (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov committed Sep 13, 2022
1 parent d2085c7 commit 7ba177e
Show file tree
Hide file tree
Showing 14 changed files with 21 additions and 28 deletions.
2 changes: 1 addition & 1 deletion 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"
Expand Down
5 changes: 2 additions & 3 deletions cbc/src/lib.rs
Expand Up @@ -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))]
Expand Down
2 changes: 1 addition & 1 deletion 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"
Expand Down
5 changes: 2 additions & 3 deletions cfb-mode/src/lib.rs
Expand Up @@ -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))]
Expand Down
2 changes: 1 addition & 1 deletion 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"
Expand Down
5 changes: 2 additions & 3 deletions cfb8/src/lib.rs
Expand Up @@ -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))]
Expand Down
2 changes: 1 addition & 1 deletion 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"
Expand Down
5 changes: 2 additions & 3 deletions ctr/src/lib.rs
Expand Up @@ -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))]
Expand Down
2 changes: 1 addition & 1 deletion 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"
Expand Down
5 changes: 2 additions & 3 deletions ige/src/lib.rs
Expand Up @@ -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))]
Expand Down
2 changes: 1 addition & 1 deletion 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"
Expand Down
5 changes: 2 additions & 3 deletions ofb/src/lib.rs
Expand Up @@ -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))]
Expand Down
2 changes: 1 addition & 1 deletion 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"
Expand Down
5 changes: 2 additions & 3 deletions pcbc/src/lib.rs
Expand Up @@ -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))]
Expand Down

0 comments on commit 7ba177e

Please sign in to comment.