forked from RumovZ/linkcheck
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
42 lines (38 loc) · 1020 Bytes
/
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
[package]
name = "linkcheck"
version = "0.4.1"
authors = ["Michael-F-Bryan <michaelfbryan@gmail.com>"]
license = "MIT OR Apache-2.0"
edition = "2018"
repository = "https://github.com/Michael-F-Bryan/linkcheck"
readme = "README.md"
description = "A library for extracting and validating links."
keywords = ["linkchecker", "linkcheck", "links", "check"]
categories = ["text-processing"]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
codespan = "0.11.0"
linkify = "0.7.0"
pulldown-cmark = "0.8"
reqwest = "0.11.1"
futures = "0.3.4"
log = "0.4.8"
thiserror = "1.0.15"
http = "0.2.1"
bytes = "1.0"
serde = { version = "1.0", optional = true, features = ["derive"] }
url = "2"
dunce = "1.0.0"
kuchiki = "*"
regex = "*"
lazy_static = "*"
mdbook = "0.4.21"
[dev-dependencies]
tempfile = "3.1.0"
pretty_assertions = "1"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
env_logger = "0.9"
[features]
default = ["serde-1"]
serde-1 = ["serde", "url/serde", "codespan/serialization"]