-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (34 loc) · 972 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
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "rvp"
version = "0.1.5"
edition = "2021"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/samgozman/rvp"
repository = "https://github.com/samgozman/rvp"
authors = ["Sam Gozman <[email protected]>"]
description = "Remote Value Parser - CLI tool for parsing string values from static web pages"
keywords = ["rvp", "parser", "cli"]
rust-version = "1.77.2"
include = ["src/**/*", "LICENSE", "README.md"]
[[bin]]
name = "rvp"
path = "src/main.rs"
[profile.release]
lto = true
strip = true
[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
anyhow = "1.0.86"
paste = "1.0.14"
tokio = { version = "1.37.0", features = ["test-util", "macros", "rt-multi-thread"] }
validator = { version = "0.18.1", features = ["derive"] }
reqwest = "0.12.4"
scraper = "0.19.0"
inquire = "0.7.5"
serde = { version = "1.0.203", features = ["derive"] }
toml = "0.8.12"
serde_json = "1.0.117"
rand = "0.8.5"
comfy-table = "7.1.1"
regex = "1.10.4"