-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (39 loc) · 1.17 KB
/
Cargo.toml
File metadata and controls
43 lines (39 loc) · 1.17 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
[package]
name = "mlc"
version = "1.2.0"
authors = ["Armin Becher <becherarmin@gmail.com>"]
edition = "2018"
description = "The markup link checker (mlc) checks for broken links in markup files."
keywords = [ "link-checker", "broken", "markup", "html", "markdown"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/becheran/mlc"
[badges]
maintenance = { status = "actively-developed" }
is-it-maintained-open-issues = { repository = "becheran/mlc" }
is-it-maintained-issue-resolution = { repository = "becheran/mlc" }
[dependencies]
clap = { version = "4.6.0", features = ["cargo"] }
log = "0.4.29"
fern = "0.7.1"
walkdir = "2.5.0"
regex = "1.12.3"
lazy_static = "1.5.0"
url = "2.5.4"
colored = "3.1.1"
async-std = "1.13.2"
reqwest = {version="0.13.2", features = ["native-tls-vendored", "brotli", "gzip", "deflate"] }
tokio = {version="1.51.1", features = ["rt-multi-thread", "macros", "time"] }
futures = "0.3.32"
wildmatch = "2.6.1"
pulldown-cmark = "0.13.3"
toml = "1.1.2"
serde = { version = "1.0.219", features = ["derive"] }
url-escape = "0.1.1"
[dev-dependencies]
ntest = "0.9.5"
criterion = "0.8.2"
mockito = "1.7.2"
[[bench]]
name = "benchmarks"
harness = false