[package]
edition = "2024"
name = "scrapey"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A basic library for tokenising HTML and generating a node tree with some basic utility functions"
readme = "README.md"
keywords = [
"parser",
"tokeniser",
"html",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/DoctorSulla/scrapey"
[lib]
name = "scrapey"
path = "src/lib.rs"
[[example]]
name = "html_elements_demo"
path = "examples/html_elements_demo.rs"
[dependencies]