arete_idl/lib.rs
1//! IDL parsing and type system for Arete
2//!
3//! This crate provides types and utilities for parsing and working with
4//! Arete IDL (Interface Definition Language) specifications.
5
6pub mod analysis;
7pub mod discriminator;
8pub mod error;
9pub mod parse;
10pub mod search;
11pub mod snapshot;
12pub mod types;
13pub mod utils;
14
15pub use discriminator::*;
16pub use error::*;
17pub use search::*;
18pub use snapshot::*;
19pub use types::*;