1
Fork 0
select-html/Cargo.toml

25 lines
489 B
TOML
Raw Normal View History

2022-09-05 12:24:49 +00:00
[package]
name = "select-html"
description = "Extract HTML using CSS selectors in the command-line."
repository = "https://git.bauke.xyz/Bauke/select-html"
2022-09-05 12:24:49 +00:00
license = "AGPL-3.0-or-later"
2022-09-23 15:44:18 +00:00
version = "0.1.1"
2022-09-05 12:24:49 +00:00
authors = ["Bauke <me@bauke.xyz>"]
edition = "2021"
[[bin]]
name = "select-html"
path = "source/main.rs"
[dependencies]
color-eyre = "0.6.2"
scraper = "0.13.0"
[dependencies.clap]
features = ["derive"]
version = "3.2.20"
[dev-dependencies]
assert_cmd = "2.0.4"
test-case = "2.2.1"