viewpoint-cdp 0.2.3

Low-level Chrome DevTools Protocol implementation over WebSocket
Documentation
[dependencies.futures-util]
default-features = false
features = ["sink", "std"]
version = "0.3"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
features = ["sync", "time", "process", "io-util", "rt"]
version = "1.47"

[dependencies.tokio-tungstenite]
features = ["rustls-tls-webpki-roots"]
version = "0.28"

[dependencies.tracing]
version = "0.1"

[dev-dependencies.base64]
version = "0.22"

[dev-dependencies.tokio]
features = ["macros", "rt-multi-thread"]
version = "1.47"

[dev-dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3"

[features]
default = []
integration = []

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

[lints.clippy]
assigning_clones = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
format_push_string = "allow"
items_after_statements = "allow"
large_enum_variant = "allow"
manual_let_else = "allow"
match_same_arms = "allow"
missing_errors_doc = "allow"
missing_fields_in_debug = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
return_self_not_must_use = "allow"
similar_names = "allow"
struct_field_names = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
type_complexity = "allow"
unused_async = "allow"
unused_self = "allow"
wildcard_in_or_patterns = "allow"

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
dead_code = "allow"
unsafe_code = "forbid"

[package]
authors = ["Stephen Stubbs"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools::testing", "web-programming"]
description = "Low-level Chrome DevTools Protocol implementation over WebSocket"
documentation = "https://docs.rs/viewpoint-cdp"
edition = "2024"
homepage = "https://github.com/stephenstubbs/viewpoint"
keywords = ["browser", "automation", "testing", "playwright", "chromium"]
license = "MIT"
name = "viewpoint-cdp"
readme = "README.md"
repository = "https://github.com/stephenstubbs/viewpoint"
resolver = "2"
rust-version = "1.85"
version = "0.2.3"

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