-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (38 loc) · 1.03 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
[package]
name = "readah"
version = "0.1.4"
edition = "2021"
description = "Key component of Readability module extracted from https://gitlab.com/news-flash/article_scraper."
license = "MIT"
[dependencies]
thiserror = "1.0"
libxml = "0.2"
reqwest = { version = "0.11", features = ["json", "native-tls", "gzip", "brotli", "stream"] }
tokio = { version = "1.27", features = ["macros", "fs", "io-util", "rt", "rt-multi-thread"] }
url = "2.3"
regex = "1.8"
chrono = "0.4"
base64 = "0.21"
log = "0.4"
once_cell = "1.17"
escaper = "0.1"
http_req = "0.9.1"
anyhow = "1.0.71"
html2text = "0.6.0"
# headless_chrome = { git = "https://github.com/rust-headless-chrome/rust-headless-chrome.git" }
headless_chrome = "1.0.5"
tiktoken-rs = "0.4.2"
pdfium-render = "0.8.5"
serde_json = "1.0.96"
[[example]]
name = "headless"
path = "src/example/headless.rs"
[[example]]
name = "headless_cli"
path = "src/example/headless_cli.rs"
[[example]]
name = "http_client"
path = "src/example/http_client.rs"
[[example]]
name = "use_helper"
path = "src/example/use_helper.rs"