Any missing documentation will now be considered a warning.

This commit is contained in:
Myrddin Dundragon 2016-08-24 12:57:44 -04:00
parent 76051cc2c2
commit 04152081be
2 changed files with 5 additions and 1 deletions

View File

@ -8,6 +8,7 @@ repository = "https://gitlab.com/CyberMages/scribe.git"
documentation = ""
keywords = ["scribe", "logging"]
[features]
default = []
use_std = []

View File

@ -1,6 +1,9 @@
//! This is the logging system used by different CyberMages projects.
//! This is meant to work with both std and non std Rust programs.
#![doc(html_logo_url="",
html_favicon_url="http://cybermagesllc.com/favicon.ico",
html_root_url="http://cybermagesllc.com")]
#![warn(missing_docs)]
// Handle using the core or the std of Rust depending on the chosen feature.
#![cfg_attr(not(feature="use_std"), no_std)]