lightdom-test 0.1.3

A lightweight Rust library for testing HTML interactions without browser automation
Documentation
[dependencies.anyhow]
version = "1.0"

[dependencies.async-trait]
version = "0.1"

[dependencies.axum]
optional = true
version = "0.7"

[dependencies.http-body-util]
optional = true
version = "0.1"

[dependencies.hyper]
optional = true
version = "1.0"

[dependencies.rocket]
optional = true
version = "0.5"

[dependencies.scraper]
version = "0.20"

[dependencies.tower]
optional = true
version = "0.5"

[dev-dependencies.serde]
features = ["derive"]
version = "1.0"

[dev-dependencies.serde_json]
version = "1.0"

[dev-dependencies.tokio]
features = ["full"]
version = "1"

[features]
axum = ["dep:axum", "dep:tower", "dep:http-body-util", "dep:hyper"]
default = []
rocket = ["dep:rocket"]

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

[package]
authors = ["fujis"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools::testing", "web-programming"]
description = "A lightweight Rust library for testing HTML interactions without browser automation"
documentation = "https://docs.rs/lightdom-test"
edition = "2021"
homepage = "https://github.com/ppdx999/lightdom-test"
keywords = ["testing", "html", "form", "web", "automation"]
license = "MIT"
name = "lightdom-test"
readme = "README.md"
repository = "https://github.com/ppdx999/lightdom-test"
version = "0.1.3"

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

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

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

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

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

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

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