aranya-capi-codegen 0.7.1

Code generation for Aranya's C API tooling
Documentation
//! Generate C APIs from Rust code.
//!
//! # Overview
//!
//! `capi-codegen` generates much of the Rust boilerplate needed
//! when exposing Rust to C.
//!
//! # Usage
//!
//! This crate is designed to be used from a [build script].
//!
//! [build script]: https://doc.rust-lang.org/cargo/reference/build-scripts.html

mod ast;
pub mod attr;
mod ctx;
mod error;
mod generate;
pub mod syntax;
mod util;

pub use error::BuildError;
pub use generate::{Config, dump, format};
pub use util::{IdentExt, KeyValPair};