[package]
edition = "2024"
name = "ferridriver-expect"
version = "0.3.0"
authors = ["Salama Ashoush <salamaashoush@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Value matchers (Jest-compatible) and asymmetric matchers for ferridriver's expect API. Shared core between the test runner and the QuickJS scripting layer."
homepage = "https://github.com/salamaashoush/ferridriver"
readme = "README.md"
keywords = [
"browser",
"automation",
"playwright",
"cdp",
"testing",
]
categories = [
"development-tools::testing",
"web-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/salamaashoush/ferridriver"
resolver = "2"
[lib]
name = "ferridriver_expect"
path = "src/lib.rs"
[dependencies.ferridriver]
version = "0.3.0"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.similar]
version = "3"
[dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.pretty_assertions]
version = "1"
[lints.clippy]
dbg_macro = "warn"
expect_used = "warn"
todo = "warn"
unwrap_used = "warn"
[lints.clippy.complexity]
level = "warn"
priority = -1
[lints.clippy.correctness]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.perf]
level = "deny"
priority = -1
[lints.clippy.style]
level = "warn"
priority = -1
[lints.clippy.suspicious]
level = "deny"
priority = -1
[lints.rust]
rust_2018_idioms = "warn"
unsafe_code = "warn"