Reverted some churn (cheers cargo-edit) and added myself to contributors

This commit is contained in:
Michael Bryan 2017-08-21 12:35:18 +08:00
parent 3a51e4a27c
commit 7821835129
4 changed files with 6 additions and 2 deletions

View File

@ -57,4 +57,4 @@ name = "mdbook"
path = "src/bin/mdbook.rs"
[dev-dependencies]
pretty_assertions = "0.2.1"
pretty_assertions = "0.2.1"

View File

@ -11,3 +11,4 @@ If you have contributed to mdBook and I forgot to add you, don't hesitate to add
- Wayne Nilsen ([waynenilsen](https://github.com/waynenilsen))
- [funnkill](https://github.com/funkill)
- Fu Gangqiang ([FuGangqiang](https://github.com/FuGangqiang))
- Michael Bryan ([Michael-F-Bryan](https://github.com/Michael-F-Bryan))

View File

@ -104,6 +104,9 @@ pub use renderer::Renderer;
/// The error types used through out this crate.
pub mod errors {
// needed temporarily because of https://github.com/rust-lang-nursery/error-chain/issues/208
#![allow(unknown_lints, unused_doc_comment)]
error_chain!{
foreign_links {
Io(::std::io::Error);

View File

@ -12,7 +12,7 @@ use regex::{Regex, Captures};
use std::ascii::AsciiExt;
use std::path::{Path, PathBuf};
use std::fs::{self, File};
use std::io::{self, Read};
use std::io::Read;
use std::collections::BTreeMap;
use std::collections::HashMap;