From f06f14354a6c7cf15cc3b9093a37e3587b56328a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Autin?= Date: Fri, 21 Apr 2023 14:29:00 +0200 Subject: [PATCH] Added project logo to doc --- src/main.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index 61529e7..95a2d69 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,4 @@ - +#![doc(html_logo_url = "assets/logo.svg", html_favicon_url = "assets/logo.svg")] #![warn(missing_docs)] #![warn(clippy::missing_docs_in_private_items)] @@ -7,10 +7,8 @@ //! Burritos is an educational operating system written in Rust //! running on RISC-V emulator. -/// Contain hardware simulated part of the machine mod simulator; mod kernel; -/// module containing useful tools which can be use in most part of the OS to ease the development of the OS pub mod utility; use std::{rc::Rc, cell::RefCell};