Weedle

A Web IDL parser

Build Status Crates.io version Download docs.rs docs

API Docs | Chat

Built with 🦀🕸 by The Rust and WebAssembly Working Group
## About Parses valid WebIDL definitions & produces a data structure starting from [`Definitions`](https://docs.rs/weedle/latest/weedle/type.Definitions.html). ## Usage ### `Cargo.toml` ```toml [dependencies] weedle = "0.9.0" ``` ### `src/main.rs` ```rust fn main() { let parsed = weedle::parse(" interface Window { readonly attribute Storage sessionStorage; }; ").unwrap(); println!("{:?}", parsed); } ```