autogeneratecdp

Docs Crates.io

An experimental crate to generate the Chrome Devtools Protocol.

Contributors

Usage

Add the following to your Cargo.toml:

```toml [dependencies] serde = {version = "1", features = ["derive"]} serde_json = '1'

[build-dependencies] autogeneratecdp = {version = "0.3.4",default-features = false} ```

To generate the protocol, add the following to your build/build.rs script.

```rust use autogeneratecdp::init;

fn main() { init(); } ```

This will generate protocol.rs in your $OUT_DIR folder when you run $ cargo check or $ cargo build. Use like:

```rust // src/protocol.rs

include!(concat!(env!("OUT_DIR"), "/protocol.rs"));

```

```rust // src/main.rs

mod protocol;

fn main() { // protocol module contains the definitions now } ```