alef-core 0.1.0

Core types, config schema, and backend trait for the alef polyglot binding generator
Documentation
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;