[package]
edition = "2021"
rust-version = "1.81"
name = "patchright"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Playwright-inspired Rust browser automation facade backed by the Playhard workspace."
homepage = "https://github.com/shirshak55/playhard"
readme = "README.md"
keywords = [
"chrome",
"cdp",
"automation",
"browser",
]
categories = [
"development-tools",
"web-programming",
]
license = "MIT"
repository = "https://github.com/shirshak55/playhard"
[lib]
name = "patchright"
path = "src/lib.rs"
[dependencies.playhard]
version = "0.1.0"
[dependencies.playhard-launcher]
version = "0.1.0"
[lints.clippy.all]
level = "deny"
priority = 1
[lints.clippy.needless_collect]
level = "warn"
priority = 2
[lints.clippy.redundant_clone]
level = "deny"
priority = 2
[lints.rust]
missing_docs = "deny"
unused_qualifications = "warn"
[lints.rust.future_incompatible]
level = "warn"
priority = -1
[lints.rust.rust_2018_idioms]
level = "deny"
priority = 1
[lints.rustdoc]
bare_urls = "warn"
broken_intra_doc_links = "deny"