From: newpavlov Date: Wed, 17 Oct 2018 17:07:08 +0000 (+0300) Subject: add doc logo X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=7f063672fe3c59875c9dfce938b85147f3aef5a5;p=PAKEs.git add doc logo --- diff --git a/spake2/src/lib.rs b/spake2/src/lib.rs index d189d9c..55a85df 100644 --- a/spake2/src/lib.rs +++ b/spake2/src/lib.rs @@ -1,3 +1,5 @@ +#![doc(html_logo_url = + "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")] #![forbid(unsafe_code)] #![cfg_attr(test, deny(warnings))] diff --git a/srp/src/lib.rs b/srp/src/lib.rs index 8e2f1f7..6900ca0 100644 --- a/srp/src/lib.rs +++ b/srp/src/lib.rs @@ -63,6 +63,8 @@ //! //! [1]: https://en.wikipedia.org/wiki/Secure_Remote_Password_protocol //! [2]: https://tools.ietf.org/html/rfc5054 +#![doc(html_logo_url = + "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")] extern crate digest; extern crate generic_array; extern crate num;