1 2 3 4 5 6 7 8 9 10 11 12
//! Core types and configuration for alef polyglot binding generator. //! Defines IR types, config schema, and backend trait. pub mod backend; pub mod config; pub mod error; pub mod ir; pub use backend::{Backend, Capabilities, GeneratedFile}; pub use config::{AlefConfig, resolve_output_dir}; pub use error::AlefError; pub use ir::ApiSurface;