Skip to content

Commit

Permalink
Merge pull request #11 from Michael-F-Bryan/rewrite
Browse files Browse the repository at this point in the history
Rewrite to cache slow requests and generate better user feedback
  • Loading branch information
Michael-F-Bryan committed Jul 22, 2019
2 parents 36be928 + 871f46d commit 838ed4c
Show file tree
Hide file tree
Showing 13 changed files with 945 additions and 707 deletions.
14 changes: 14 additions & 0 deletions .rustfmt.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
max_width = 80
tab_spaces = 4
fn_single_line = true
match_block_trailing_comma = true
normalize_comments = true
wrap_comments = true
merge_imports = true
reorder_impl_items = true
use_field_init_shorthand = true
use_try_shorthand = true
normalize_doc_attributes = true
report_todo = "Always"
report_fixme = "Always"
edition = "2018"
56 changes: 44 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 8 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version = "0.3.2-alpha.0"
authors = ["Michael Bryan <michaelfbryan@gmail.com>"]
description = "A backend for `mdbook` which will check your links for you."
license = "MIT"
edition = "2018"
documentation = "https://docs.rs/mdbook-linkcheck"
repository = "https://github.com/Michael-F-Bryan/mdbook-linkcheck"
readme = "README.md"
Expand All @@ -23,12 +24,14 @@ pulldown-cmark = "0.5"
structopt = "0.2"
log = "0.4"
env_logger = "0.6"
memchr = "2.0"
url = "1.6"
reqwest = "0.9"
rayon = "1.0.2"
semver = "0.9.0"
semver = "0.9"
regex = "1.0"
codespan = "0.3"
codespan-reporting = "0.3"
http = "0.1.17"
reqwest = "0.9.19"
rayon = "1.0"
either = "1.5"

[dev-dependencies]
pretty_assertions = "0.6"
Expand Down
Loading

0 comments on commit 838ed4c

Please sign in to comment.