1
Fork 0
select-html/Cargo.toml

32 lines
604 B
TOML
Raw Permalink 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"
2024-01-25 18:14:06 +00:00
version = "0.1.2"
2022-09-05 12:24:49 +00:00
authors = ["Bauke <me@bauke.xyz>"]
edition = "2021"
[[bin]]
name = "select-html"
path = "source/main.rs"
2024-01-25 17:48:26 +00:00
[lints.clippy]
missing_docs_in_private_items = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"
2022-09-05 12:24:49 +00:00
[dependencies]
color-eyre = "0.6.2"
2024-01-25 17:52:13 +00:00
scraper = "0.18.1"
2022-09-05 12:24:49 +00:00
[dependencies.clap]
features = ["derive"]
2024-01-25 17:52:13 +00:00
version = "4.4.18"
2022-09-05 12:24:49 +00:00
[dev-dependencies]
2024-01-25 17:52:13 +00:00
assert_cmd = "2.0.13"
test-case = "3.3.1"