chrome_devtools/lib.rs
1//! An experimental new library that serializes and deserializes messages for the [Chrome Devtools
2//! Protocol](https://chromedevtools.github.io/devtools-protocol/).
3//!
4//! The Devtools Protocol is divided into a number of domains. Each of these domains have "methods"
5//! and "events" that can be both serialized and deserialized by this library.
6
7pub mod domain;
8
9pub use domain::{runtime, runtime::Runtime, Domain};