From f0f63086d54cbfcee68baded1bdd7f78921e6498 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Thu, 12 Oct 2023 15:44:14 +0200 Subject: [PATCH] events: Add html_favicon_url and html_logo_url for docs --- crates/ruma-events/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/ruma-events/src/lib.rs b/crates/ruma-events/src/lib.rs index b874b0ce..355e34cd 100644 --- a/crates/ruma-events/src/lib.rs +++ b/crates/ruma-events/src/lib.rs @@ -1,3 +1,5 @@ +#![doc(html_favicon_url = "https://ruma.io/favicon.ico")] +#![doc(html_logo_url = "https://ruma.io/images/logo.png")] //! (De)serializable types for the events in the [Matrix](https://matrix.org) specification. //! These types are used by other Ruma crates. //!