-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (24 loc) · 936 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
[package]
name = "webgrep"
version = "0.4.3"
edition = "2021"
license = "MIT"
description = "grep the web: a full-browser-spec search-focused ultra-simple way to read the web without having to leave the terminal"
readme = "README.md"
repository = "https://github.com/qpxdesign/webgrep-rs/"
authors = ["Quinn Patwardhan <[email protected]>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.4.18", features = ["derive"] }
lazy_static = "1.5.0"
regex = "1.10.5"
reqwest = { version = "0.12.5", features = ["native-tls-vendored"]}
scraper = "0.19.0"
url = "2.5.2"
tokio = { version = "1", features = ["full"] }
tokio-macros = "2.3.0"
async-recursion = "1.1.1"
futures = "0.3.30"
colored = "2.1.0"
headless_chrome = {version = "1.0.12", git = "https://github.com/rust-headless-chrome/rust-headless-chrome", features = ["fetch"] }
pdf-extract = "0.7.7"