-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
33 lines (32 loc) · 898 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
[package]
name = "linky"
version = "0.2.0"
authors = ["Mattias Päivärinta <mattias@paivarinta.se>"]
description = "Extract links from Markdown files and check links for brokenness"
repository = "/~https://github.com/mattias-p/linky"
readme = "README.md"
keywords = ["commonmark","extract","validate","links","documentation"]
categories = ["command-line-utilities"]
license = "Apache-2.0"
include = [
"Cargo.toml",
"**/*.rs",
]
edition = "2018"
[dependencies]
bytecount = "0.3.1"
clap = { version = "4.3.4", features = ["derive"] }
encoding_rs = "0.8.32"
htmlstream = "0.1.3"
lazy_static = "1.4.0"
log = "0.4"
mime = "0.3.13"
pretty_env_logger = "0.5.0"
pulldown-cmark = { version = "0.6", default-features = false }
rayon = "1.0"
regex = ">=1.5.5"
reqwest = { version = "0.11.18", features = ["blocking"] }
shell-escape = "0.1.3"
url = "2.4.0"
urlencoding = "1.0.0"
xhtmlchardet = "2.0.0"