blob: ec647d8848c2d4af2b4102df7f7e33ab1dd021ea [file]
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//! ALL the parsing!
//
// FOR_RELEASE: Figure out the organization of this crate, what needs to be
// public, etc. For now, just export everything blindly.
mod api;
mod ast;
mod deparse_values;
mod errors;
mod message_header;
mod pack;
mod parse_primitives;
mod parse_values;
mod parsing_trait;
pub use crate::api::*;
pub use crate::ast::*;
pub use crate::deparse_values::*;
pub use crate::errors::*;
pub use crate::message_header::*;
pub use crate::pack::*;
pub use crate::parse_primitives::ParserData;
pub use crate::parse_values::*;
pub use crate::parsing_trait::*;