diff --git a/aes/aes-soft/src/lib.rs b/aes/aes-soft/src/lib.rs index 89f84f57..7eafd255 100644 --- a/aes/aes-soft/src/lib.rs +++ b/aes/aes-soft/src/lib.rs @@ -34,7 +34,10 @@ //! [1]: https://github.com/DaGenix/rust-crypto/blob/master/src/aessafe.rs #![no_std] -#![doc(html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")] +#![doc( + html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg" +)] #![deny(unsafe_code)] #![warn(missing_docs, rust_2018_idioms)] diff --git a/aes/aesni/src/lib.rs b/aes/aesni/src/lib.rs index b782e4f2..6f8da049 100644 --- a/aes/aesni/src/lib.rs +++ b/aes/aesni/src/lib.rs @@ -72,7 +72,10 @@ //! - [Use of the AES Instruction Set](https://www.cosic.esat.kuleuven.be/ecrypt/AESday/slides/Use_of_the_AES_Instruction_Set.pdf) #![no_std] -#![doc(html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")] +#![doc( + html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg" +)] #![warn(missing_docs, rust_2018_idioms)] pub use block_cipher; diff --git a/aes/src/lib.rs b/aes/src/lib.rs index 7419938e..9d9c7838 100644 --- a/aes/src/lib.rs +++ b/aes/src/lib.rs @@ -42,7 +42,10 @@ //! [`block-modes`](https://docs.rs/block-modes) crate. #![no_std] -#![doc(html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")] +#![doc( + html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg" +)] #![deny(unsafe_code)] #![warn(missing_docs, rust_2018_idioms)] diff --git a/block-modes/src/lib.rs b/block-modes/src/lib.rs index d097aa94..d798ce9e 100644 --- a/block-modes/src/lib.rs +++ b/block-modes/src/lib.rs @@ -71,7 +71,10 @@ //! [2]: https://github.com/RustCrypto/stream-ciphers #![no_std] -#![doc(html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")] +#![doc( + html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg" +)] #![deny(unsafe_code)] #![warn(missing_docs, rust_2018_idioms)] diff --git a/blowfish/src/lib.rs b/blowfish/src/lib.rs index e1a3d573..ec8f4617 100644 --- a/blowfish/src/lib.rs +++ b/blowfish/src/lib.rs @@ -1,7 +1,10 @@ //! Blowfish block cipher #![no_std] -#![doc(html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")] +#![doc( + html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg" +)] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms)] diff --git a/cast5/src/lib.rs b/cast5/src/lib.rs index 068f9aeb..02cb72e8 100644 --- a/cast5/src/lib.rs +++ b/cast5/src/lib.rs @@ -23,7 +23,10 @@ //! ``` #![no_std] -#![doc(html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")] +#![doc( + html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg" +)] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms)] diff --git a/des/src/lib.rs b/des/src/lib.rs index 270e75f9..43d7e50c 100644 --- a/des/src/lib.rs +++ b/des/src/lib.rs @@ -3,7 +3,10 @@ //! [1]: https://en.wikipedia.org/wiki/Data_Encryption_Standard #![no_std] -#![doc(html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")] +#![doc( + html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg" +)] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms)] diff --git a/gost-modes/src/lib.rs b/gost-modes/src/lib.rs index 98b2d6f3..b66181a9 100644 --- a/gost-modes/src/lib.rs +++ b/gost-modes/src/lib.rs @@ -46,7 +46,10 @@ //! [`stream-cipher`]: https://docs.rs/stream-cipher/ //! [`cmac`]: https://docs.rs/cmac/ #![no_std] -#![doc(html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")] +#![doc( + html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg" +)] #![deny(unsafe_code)] #![warn(missing_docs, rust_2018_idioms)] diff --git a/idea/src/lib.rs b/idea/src/lib.rs index 1acd6143..633390e7 100644 --- a/idea/src/lib.rs +++ b/idea/src/lib.rs @@ -3,7 +3,10 @@ //! [1]: https://en.wikipedia.org/wiki/International_Data_Encryption_Algorithm #![no_std] -#![doc(html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")] +#![doc( + html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg" +)] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms)] #![allow(clippy::many_single_char_names)] diff --git a/kuznyechik/src/lib.rs b/kuznyechik/src/lib.rs index 2a63188e..a29cb3f3 100644 --- a/kuznyechik/src/lib.rs +++ b/kuznyechik/src/lib.rs @@ -2,7 +2,10 @@ //! //! [1]: https://en.wikipedia.org/wiki/Kuznyechik #![no_std] -#![doc(html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")] +#![doc( + html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg" +)] #![deny(unsafe_code)] #![warn(missing_docs, rust_2018_idioms)] #![allow(clippy::needless_range_loop, clippy::transmute_ptr_to_ptr)] diff --git a/magma/src/lib.rs b/magma/src/lib.rs index 7fa5e08e..9432051b 100644 --- a/magma/src/lib.rs +++ b/magma/src/lib.rs @@ -27,7 +27,10 @@ //! //! [1]: https://en.wikipedia.org/wiki/GOST_(block_cipher) #![no_std] -#![doc(html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")] +#![doc( + html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg" +)] #![deny(unsafe_code)] #![warn(rust_2018_idioms)] diff --git a/rc2/src/lib.rs b/rc2/src/lib.rs index bcf65538..b2d1fdb9 100644 --- a/rc2/src/lib.rs +++ b/rc2/src/lib.rs @@ -3,7 +3,10 @@ //! [1]: https://en.wikipedia.org/wiki/RC2 #![no_std] -#![doc(html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")] +#![doc( + html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg" +)] #![forbid(unsafe_code)] #![warn(rust_2018_idioms)] diff --git a/serpent/src/lib.rs b/serpent/src/lib.rs index 66e06d88..5c9af0a5 100644 --- a/serpent/src/lib.rs +++ b/serpent/src/lib.rs @@ -5,7 +5,10 @@ //! [3]: https://github.com/efb9-860a-e752-0dac/serpent #![no_std] -#![doc(html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")] +#![doc( + html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg" +)] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms)] #![allow(clippy::needless_range_loop)] diff --git a/sm4/src/lib.rs b/sm4/src/lib.rs index a80abf83..c32fd860 100644 --- a/sm4/src/lib.rs +++ b/sm4/src/lib.rs @@ -3,7 +3,10 @@ //! [1]: https://en.wikipedia.org/wiki/SM4_(cipher) #![no_std] -#![doc(html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")] +#![doc( + html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg" +)] #![forbid(unsafe_code)] #![warn(rust_2018_idioms)] #![allow(clippy::unreadable_literal)] diff --git a/threefish/src/lib.rs b/threefish/src/lib.rs index c371933f..80f17372 100644 --- a/threefish/src/lib.rs +++ b/threefish/src/lib.rs @@ -1,7 +1,10 @@ //! Threefish #![no_std] -#![doc(html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")] +#![doc( + html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg" +)] #![forbid(unsafe_code)] #![warn(rust_2018_idioms)] diff --git a/twofish/src/lib.rs b/twofish/src/lib.rs index 00e306d0..9198da90 100644 --- a/twofish/src/lib.rs +++ b/twofish/src/lib.rs @@ -1,7 +1,10 @@ //! Twofish block cipher #![no_std] -#![doc(html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")] +#![doc( + html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg" +)] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms)] #![allow(clippy::needless_range_loop, clippy::unreadable_literal)]