-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 1.12 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
[package]
name = "proxy-scraper"
version = "0.2.0"
edition = "2021"
authors = ["Zola Gonano <[email protected]>"]
description = "A Rust command-line tool for scraping proxy information."
homepage = "https://github.com/zolagonano/proxy_scraper.git"
repository = "https://github.com/zolagonano/proxy_scraper.git"
keywords = ["proxy", "scraper", "rust", "tokio"]
categories = ["command-line-utilities", "parsing", "asynchronous"]
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/proxy-scraper/"
[features]
default = ["scraper", "dep:argh", "dep:reqwest", "dep:tokio"]
scraper = []
checking = ["dep:reqwest"]
[lib]
name = "proxy_scraper"
path = "src/lib/lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
argh = {version = "0.1.12", optional = true }
base64 = "0.22.0"
regex = "1.10.2"
reqwest = { version = "0.11.23", optional = true, features = ["blocking"] }
serde = { version = "1.0.198", features = ["derive"] }
serde_json = "1.0.116"
serde_urlencoded = "0.7.1"
tokio = { version = "1.35.1", features = ["full"] , optional = true}
url = "2.5.0"