chore: update to rust 2018

This commit is contained in:
PoiScript 2019-02-07 23:37:46 +08:00
parent aa786e97c1
commit c1154a1853
12 changed files with 37 additions and 41 deletions

View file

@ -1,9 +1,11 @@
#![allow(unused_variables)]
use elements::Key;
use export::Handler;
use headline::Headline;
use objects::{Cookie, FnRef, InlineCall, InlineSrc, Link, Macros, RadioTarget, Snippet, Target};
use crate::elements::Key;
use crate::export::Handler;
use crate::headline::Headline;
use crate::objects::{
Cookie, FnRef, InlineCall, InlineSrc, Link, Macros, RadioTarget, Snippet, Target,
};
use std::io::{Result, Write};
pub struct HtmlHandler;