Skip to main content

alef_core/
lib.rs

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