-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (45 loc) · 1.11 KB
/
Copy pathCargo.toml
File metadata and controls
50 lines (45 loc) · 1.11 KB
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
46
47
48
49
50
[package]
name = "mdbook-linkcheck2"
version = "0.12.2"
authors = [
"Michael Bryan <michaelfbryan@gmail.com>",
"Martin Liška <martin.liska@hey.com>",
]
description = "A backend for `mdbook` which will check your links for you."
license = "MIT"
edition = "2024"
documentation = "https://docs.rs/mdbook-linkcheck2"
repository = "https://github.com/marxin/mdbook-linkcheck2"
readme = "README.md"
rust-version = "1.90"
[[bin]]
name = "mdbook-linkcheck2"
path = "src/bin/mdbook-linkcheck.rs"
doc = false
[dependencies]
anyhow = "1.0.95"
codespan = "0.13.1"
codespan-reporting = "0.13"
dunce = "1"
env_logger = "0.11.6"
http = "=1.3.1"
linkcheck2 = "0.10.0"
log = "0.4"
mdbook-driver = "0.5.1"
mdbook-renderer = "0.5.1"
pulldown-cmark = "0.13.0"
regex = "1.11.1"
reqwest = "0.13.2"
semver = "1.0.24"
serde = { version = "1.0.217", features = ["derive"] }
serde_derive = "1.0.217"
serde_json = "1.0.134"
structopt = "0.3"
tokio = { version = "1.42", features = ["rt-multi-thread"] }
[dev-dependencies]
pretty_assertions = "1"
toml = "1.0"
[workspace]
members = ["xtask"]
[badges]
maintenance = { status = "passively-maintained" }