scrapling 0.2.0

Fast, adaptive web scraping toolkit for Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "scrapling"
version = "0.2.0"
authors = ["Chris Bruce <chrisabruce@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast, adaptive web scraping toolkit for Rust"
readme = "README.md"
license = "MIT"
repository = "https://github.com/chrisabruce/scrapling-rs"

[features]
default = ["storage"]
storage = ["dep:rusqlite"]

[lib]
name = "scrapling"
path = "src/lib.rs"

[[test]]
name = "test_adaptive"
path = "tests/test_adaptive.rs"

[[test]]
name = "test_ancestor_navigation"
path = "tests/test_ancestor_navigation.rs"

[[test]]
name = "test_attributes_handler"
path = "tests/test_attributes_handler.rs"

[[test]]
name = "test_find_similar"
path = "tests/test_find_similar.rs"

[[test]]
name = "test_general"
path = "tests/test_general.rs"

[[test]]
name = "test_parser_advanced"
path = "tests/test_parser_advanced.rs"

[[test]]
name = "test_snapshots"
path = "tests/test_snapshots.rs"

[[bench]]
name = "parsing"
path = "benches/parsing.rs"
harness = false

[dependencies.ego-tree]
version = "0.10"

[dependencies.encoding_rs]
version = "0.8"

[dependencies.html2md]
version = "0.2"

[dependencies.html5ever]
version = "0.30"

[dependencies.htmlize]
version = "1"
features = ["unescape"]

[dependencies.lru]
version = "0.13"

[dependencies.once_cell]
version = "1"

[dependencies.regex]
version = "1"

[dependencies.rusqlite]
version = "0.33"
features = ["bundled"]
optional = true

[dependencies.scraper]
version = "0.22"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.strsim]
version = "0.11"

[dependencies.thiserror]
version = "2"

[dependencies.url]
version = "2"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.insta]
version = "1"
features = ["yaml"]

[dev-dependencies.proptest]
version = "1"