From 8045684f996b15b3dd9bfd621cfc3864d3760923 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Sun, 16 Jul 2023 22:40:02 -0700 Subject: [PATCH] Add smol-rs logo (#52) --- src/lib.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 95562b3..04ab51a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,6 +8,12 @@ //! * [`Semaphore`] - limits the number of concurrent operations. #![warn(missing_docs, missing_debug_implementations, rust_2018_idioms)] +#![doc( + html_favicon_url = "https://raw.githubusercontent.com/smol-rs/smol/master/assets/images/logo_fullsize_transparent.png" +)] +#![doc( + html_logo_url = "https://raw.githubusercontent.com/smol-rs/smol/master/assets/images/logo_fullsize_transparent.png" +)] /// Simple macro to extract the value of `Poll` or return `Pending`. ///