-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
47 lines (42 loc) · 1.2 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
46
47
[package]
name = "cargo-deadlinks"
description = "Cargo subcommand for checking your documentation for broken links"
version = "0.8.1"
authors = ["Maximilian Goisser <[email protected]>", "Joshua Nelson <[email protected]"]
edition = "2018"
repository = "https://github.com/deadlinks/cargo-deadlinks"
readme = "README.md"
license = "MIT OR Apache-2.0"
autobins = false
default-run = "deadlinks"
[[bin]]
name = "cargo-deadlinks"
required-features = ["cargo"]
[[bin]]
name = "deadlinks"
[features]
cargo = ["cargo_metadata", "serde_json"]
default = ["cargo"]
[dependencies]
cached = { version = "0.25.0", default-features = false }
cargo_metadata = { version = "0.14", optional = true }
serde_json = { version = "1.0.34", optional = true }
pico-args = "0.3"
env_logger = "0.9"
lol_html = "0.3"
log = "0.4"
num_cpus = "1.8"
once_cell = "1.5.1"
rayon = "1.0"
regex = { version = "1", default-features = false, features = ["std", "perf"] }
ureq = { version = "2.0.1", features = ["tls"], default-features = false }
serde = "1.0"
serde_derive = "1.0"
url = "2"
# Try to keep this in sync with `url`'s version
percent-encoding = "2"
walkdir = "2.1"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "2.0.3"
mockito = "0.31.0"