Reverted some churn (cheers cargo-edit) and added myself to contributors
This commit is contained in:
parent
3a51e4a27c
commit
7821835129
|
@ -57,4 +57,4 @@ name = "mdbook"
|
|||
path = "src/bin/mdbook.rs"
|
||||
|
||||
[dev-dependencies]
|
||||
pretty_assertions = "0.2.1"
|
||||
pretty_assertions = "0.2.1"
|
||||
|
|
|
@ -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))
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue