-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 836 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 836 Bytes
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
[package]
name = "curlup"
version = "0.3.0"
edition = "2021"
description = "A terminal-first, text-only browser powered by real web rendering"
[dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros", "process", "time"] }
clap = { version = "4.5", features = ["derive"] }
fantoccini = "0.21"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
anyhow = "1.0"
dirs = "5.0"
which = "7.0"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] }
dialoguer = { version = "0.11", features = ["fuzzy-select"] }
console = "0.15"
url = "2.5"
# HTML parsing for link extraction
scraper = "0.25"
# HTML to terminal text rendering with rich annotations
html2text = "0.16"
# Reader mode - article extraction using Readability algorithm
dom_smoothie = "0.14"