Move Error and RenderInfo out of html module

This commit is contained in:
Joseph Ryan
2020-06-15 13:42:29 -05:00
parent efc02b03d1
commit c692ed468c
7 changed files with 85 additions and 71 deletions

View File

@@ -63,6 +63,8 @@ mod config;
mod core;
mod docfs;
mod doctree;
#[macro_use]
mod error;
mod fold;
pub mod html {
crate mod escape;
@@ -85,7 +87,7 @@ mod visit_lib;
struct Output {
krate: clean::Crate,
renderinfo: html::render::RenderInfo,
renderinfo: config::RenderInfo,
renderopts: config::RenderOptions,
}