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;
11pub mod version;
12
13pub use backend::{Backend, Capabilities, GeneratedFile};
14pub use config::resolve_output_dir;
15pub use error::AlefError;
16pub use ir::ApiSurface;