boltffi_bindgen 0.24.1

Code generation library for BoltFFI - generates Swift, Kotlin, and TypeScript bindings
Documentation
mod emit;
mod error;
mod lower;
mod naming;
mod plan;
mod primitives;
mod templates;
mod version;

pub use emit::{PythonEmitter, PythonOutputFile, PythonPackageSources};
pub use error::PythonLowerError;
pub use lower::PythonLowerer;
pub use naming::NamingConvention;
pub use plan::{
    PythonCStyleEnum, PythonCStyleEnumVariant, PythonCallable, PythonEnumConstructor,
    PythonEnumMethod, PythonEnumType, PythonFunction, PythonModule, PythonParameter, PythonRecord,
    PythonRecordConstructor, PythonRecordField, PythonRecordMethod, PythonRecordType,
    PythonSequenceType, PythonType,
};
pub use version::PythonRuntimeVersion;