From 6c0338616252b89883d818a232021ae8da02f42b Mon Sep 17 00:00:00 2001 From: coolreader18 <33094578+coolreader18@users.noreply.github.com> Date: Mon, 8 Jul 2019 23:57:18 -0500 Subject: [PATCH] Add #![doc(html_logo_url = ...)] to crates --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index e0e6fb2..5e844b2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,7 @@ //! Compile a Python AST or source code into bytecode consumable by RustPython or //! (eventually) CPython. +#![doc(html_logo_url = "https://raw.githubusercontent.com/RustPython/RustPython/master/logo.png")] +#![doc(html_root_url = "https://docs.rs/rustpython-compiler/")] #[macro_use] extern crate log;