omg_idl_grammar/lib.rs
1// Copyright (C) 2025 Bryan Conn
2// Copyright (C) 2019 Frank Rehberger
3// Copyright (C) 2017 Kevin Pansky
4
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
11//! # Object Management Group IDL v4.0 grammar
12//!
13//! Contains grammar for OMG IDL v4.0.
14
15extern crate pest;
16#[macro_use]
17extern crate pest_derive;
18
19/// OMG IDL v4 parser
20#[derive(Parser)]
21#[grammar = "grammar/idl_v4.pest"]
22pub struct IdlParser;