2 releases

0.1.1 Aug 12, 2019
0.1.0 Aug 2, 2019

#2171 in Development tools

Download history 56/week @ 2024-10-23 98/week @ 2024-10-30 72/week @ 2024-11-06 84/week @ 2024-11-13 103/week @ 2024-11-20 110/week @ 2024-11-27 92/week @ 2024-12-04 71/week @ 2024-12-11 63/week @ 2024-12-18 14/week @ 2025-01-01 73/week @ 2025-01-08 45/week @ 2025-01-15 69/week @ 2025-01-22 44/week @ 2025-01-29 64/week @ 2025-02-05

252 downloads per month

MIT license

52KB
1.5K SLoC

pdl Travis Build Status Appveyor Build status crate docs dependency status

Parse PDL file for the Chrome DevTools Protocol.

NOTE: PDL (pronounced as ˈpo͞odl) is a home-grown format to describe the DevTools protocol. PDL support, such as Sublime syntax highlighting and the json converter, is available at https://github.com/pavelfeldman/pdl.

Usage

To use pdl in your project, add the following to your Cargo.toml:

[dependencies]
pdl = "0.1"

Example

Use pdl::parse to parse a PDL file as strongly typed data structures.

let mut f = File::open("browser_protoco.pdl")?;
let mut s = String::new();
f.read_to_string(&mut s)?;

let (rest, proto) = pdl::parse(&s)?;

println!("PDL: {}", proto);
println!("JSON: {}", proto.to_json_pretty());

For more detail, please check the parser example.

$ cargo run --example parser -- browser_protocol.pdl --json --output browser_protocol.json

Resources

Dependencies

~8–560KB
~12K SLoC