Added project logo to doc

This commit is contained in:
François Autin 2023-04-21 14:29:00 +02:00
parent 8732a6f0b7
commit f06f14354a
No known key found for this signature in database
GPG Key ID: 343F5D382E1DD77C

View File

@ -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};