[package]
edition = "2024"
rust-version = "1.85"
name = "browser_tester"
version = "0.8.0"
build = false
include = [
"Cargo.toml",
"Cargo.lock",
"README.md",
"LICENSE",
"src/**/*.rs",
"tests/**/*.rs",
"doc/**/*.md",
"translations/ja/**/*.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic lightweight browser runtime for Rust tests"
homepage = "https://github.com/finitefield-org/browser-tester"
documentation = "https://docs.rs/browser_tester"
readme = "README.md"
keywords = [
"browser",
"testing",
"dom",
"javascript",
"mock",
]
categories = [
"development-tools::testing",
"web-programming",
]
license = "MIT"
repository = "https://github.com/finitefield-org/browser-tester"
[lib]
name = "browser_tester"
path = "src/lib.rs"
[[test]]
name = "debug_parse"
path = "tests/debug_parse.rs"
[[test]]
name = "parser_property_fuzz_test"
path = "tests/parser_property_fuzz_test.rs"
[[test]]
name = "regression_parser_fixes"
path = "tests/regression_parser_fixes.rs"
[[test]]
name = "regression_real_world_html"
path = "tests/regression_real_world_html.rs"
[[test]]
name = "regression_runtime_state_fixes"
path = "tests/regression_runtime_state_fixes.rs"
[[test]]
name = "runtime_property_fuzz_test"
path = "tests/runtime_property_fuzz_test.rs"
[dependencies.num-bigint]
version = "0.4"
[dependencies.num-traits]
version = "0.2"
[dependencies.stacker]
version = "0.1"
[dependencies.unicode-normalization]
version = "0.1"
[dev-dependencies.proptest]
version = "1.6"