[package]
edition = "2021"
name = "dravr-browser"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Headless-Chrome automation primitives: launch, persistent profiles, stealth, CDP input, and streaming network capture"
homepage = "https://github.com/dravr-ai/dravr-browser"
documentation = "https://docs.rs/dravr-browser"
readme = "README.md"
keywords = [
"headless-chrome",
"browser",
"automation",
"cdp",
"scraping",
]
categories = [
"web-programming",
"api-bindings",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/dravr-ai/dravr-browser"
[lib]
name = "dravr_browser"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.chromiumoxide]
version = "0.9"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.futures]
version = "0.3"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1.45"
features = [
"time",
"rt",
"macros",
"sync",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1.45"
features = [
"full",
"test-util",
]
[lints.clippy]
absolute_paths = "deny"
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
redundant_pub_crate = "allow"
return_self_not_must_use = "allow"
significant_drop_tightening = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
unsafe_code = "deny"
[profile.release]
lto = "thin"
codegen-units = 1
strip = true