-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
65 lines (55 loc) · 1.36 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
authors = ["Sylvain Wallez <sylvain@bluxte.net>"]
edition = "2021"
name = "gdocs2hugo"
version = "0.1.0"
[dependencies]
# Base stuff
anyhow = { version = "1.0", features = ["backtrace"] }
chrono = { version = "0.4", features = ["serde"] }
indoc = "2.0.1"
itertools = "0.10.3"
lazy_static = "1.4.0"
maplit = "1.0.2"
regex = "1.6.0"
lazy-regex = "3"
clap = { version="3.2.17", features = ["derive"] }
rayon = "1.5.3"
backtrace-on-stack-overflow = "0.3.0"
# Serde and formats
serde = {version = "1.0.142" }
serde_derive = {version = "1.0.142" }
csv = "1.1.6"
serde_yaml = "0.9.4"
serde_json = "1.0"
# HTML and CSS parsing
html5ever = "0.26.0"
xml5ever = "0.17.0"
markup5ever = "0.11.0"
cssparser = "0.29.6"
string_cache = "0.8.4"
scraper = "0.16.0"
selectors = "*"
ego-tree = "*"
tendril = "*"
#markup5ever = "*"
glob = "0.3"
nom="7.1.1"
# HTTP
reqwest = {version = "0.11.11", features = ["blocking"] }
url = "2.2"
hyper014 = { package = "hyper", version = "0.14", features = ["client"] }
hyper-rustls = {version = "0.24", features = ["http1", "http2"] }
tokio = { version = "*", features = ["rt-multi-thread"] }
bytes = "*"
mime_guess = "2.0.4"
http = "0.2"
# Used for images
image = "0.24.3"
## Google docs
google-docs1 = "5.0.2"
google-drive3 = "5.0.2"
google-sheets4 = "5.0.2"
[dev-dependencies]
insta = { version = "1.24.1", features = ["yaml"] }
testresult = "0.3.0"