forked from Michael-F-Bryan/mdbook-linkcheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (40 loc) · 1.11 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "mdbook-linkcheck"
version = "0.7.7"
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"
[[bin]]
name = "mdbook-linkcheck"
path = "src/bin/mdbook-linkcheck.rs"
doc = false
[dependencies]
anyhow = "1.0.28"
codespan = { version = "0.11.1" }
codespan-reporting = "0.11"
dunce = "1.0.0"
env_logger = "0.9"
http = "0.2"
linkcheck = "0.4"
log = "0.4"
mdbook = { version = "0.4", default-features = false }
pulldown-cmark = "0.8.0"
regex = "1.0"
reqwest = { version = "0.11", default-features = false, features = ["native-tls-vendored"]}
semver = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0"
serde_json = "1.0"
structopt = "0.3"
tokio = { version = "1.0", features = ["rt-multi-thread"] }
[dev-dependencies]
pretty_assertions = "1"
toml = "0.5"
[workspace]
members = ["xtask"]
[badges]
maintenance = { status = "passively-maintained"}