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