wave_compiler/driver/mod.rs
1// Copyright 2026 Ojima Abraham
2// SPDX-License-Identifier: Apache-2.0
3
4//! Compiler driver: configuration, session management, and pipeline orchestration.
5//!
6//! The driver module is the top-level entry point that coordinates all
7//! compilation stages from source code to WAVE binary.
8
9pub mod config;
10pub mod pipeline;
11pub mod session;
12
13pub use config::{CompilerConfig, Language, OptLevel};
14pub use pipeline::{compile_kernel, compile_source};
15pub use session::Session;