[package]
edition = "2021"
name = "cdp-server"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generic CDP (Chrome DevTools Protocol) server framework"
readme = "README.md"
license = "MIT OR MPL-2.0"
repository = "https://github.com/putao520/bao"
[lib]
name = "cdp_server"
path = "src/lib.rs"
[[test]]
name = "cdp_server_ws_url_config_deep_tests"
path = "tests/cdp_server_ws_url_config_deep_tests.rs"
[[test]]
name = "concurrency_tests"
path = "tests/concurrency_tests.rs"
[[test]]
name = "config_session_transport_deep_tests"
path = "tests/config_session_transport_deep_tests.rs"
[[test]]
name = "edge_case_tests"
path = "tests/edge_case_tests.rs"
[[test]]
name = "extended_tests"
path = "tests/extended_tests.rs"
[[test]]
name = "final_remaining_cdp_tests"
path = "tests/final_remaining_cdp_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "protocol_broadcaster_deep_tests"
path = "tests/protocol_broadcaster_deep_tests.rs"
[[test]]
name = "protocol_compliance_tests"
path = "tests/protocol_compliance_tests.rs"
[[test]]
name = "protocol_conformance_tests"
path = "tests/protocol_conformance_tests.rs"
[[test]]
name = "protocol_error_session_tests"
path = "tests/protocol_error_session_tests.rs"
[[test]]
name = "protocol_robustness_tests"
path = "tests/protocol_robustness_tests.rs"
[[test]]
name = "protocol_serverconfig_deep_tests"
path = "tests/protocol_serverconfig_deep_tests.rs"
[[test]]
name = "registry_advanced_tests"
path = "tests/registry_advanced_tests.rs"
[[test]]
name = "registry_session_event_deep_tests"
path = "tests/registry_session_event_deep_tests.rs"
[[test]]
name = "server_api_boundary_tests"
path = "tests/server_api_boundary_tests.rs"
[[test]]
name = "server_api_lifecycle_deep_tests"
path = "tests/server_api_lifecycle_deep_tests.rs"
[[test]]
name = "server_config_builder_deep_tests"
path = "tests/server_config_builder_deep_tests.rs"
[[test]]
name = "server_transport_protocol_deep_tests"
path = "tests/server_transport_protocol_deep_tests.rs"
[[test]]
name = "stress_recovery_tests"
path = "tests/stress_recovery_tests.rs"
[[test]]
name = "transport_http_parse_tests"
path = "tests/transport_http_parse_tests.rs"
[[test]]
name = "transport_parse_boundary_tests"
path = "tests/transport_parse_boundary_tests.rs"
[[test]]
name = "transport_parse_deep_tests"
path = "tests/transport_parse_deep_tests.rs"
[[test]]
name = "unit_tests"
path = "tests/unit_tests.rs"
[dependencies.log]
version = "0.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tungstenite]
version = "0.26"
features = ["handshake"]