17 releases (breaking)

0.13.0 Jul 8, 2024
0.12.0 Jan 21, 2021
0.11.0 Mar 2, 2020
0.10.0 Jul 10, 2019
0.5.0 Jul 26, 2018

#867 in Parser implementations

Download history 708/week @ 2024-10-16 808/week @ 2024-10-23 834/week @ 2024-10-30 538/week @ 2024-11-06 369/week @ 2024-11-13 823/week @ 2024-11-20 795/week @ 2024-11-27 898/week @ 2024-12-04 1386/week @ 2024-12-11 820/week @ 2024-12-18 173/week @ 2024-12-25 575/week @ 2025-01-01 724/week @ 2025-01-08 1774/week @ 2025-01-15 983/week @ 2025-01-22 1115/week @ 2025-01-29

4,687 downloads per month
Used in 8 crates (6 directly)

MIT license

95KB
2.5K SLoC

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.

Usage

Cargo.toml

[dependencies]
weedle = "0.9.0"

src/main.rs

fn main() {
    let parsed = weedle::parse("
        interface Window {
            readonly attribute Storage sessionStorage;
        };
    ").unwrap();

    println!("{:?}", parsed);
}

Dependencies

~1MB
~17K SLoC