alef 0.67.5

Opinionated polyglot binding generator for Rust libraries
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Python (PyO3) binding generator backend for alef.

// pub(crate): e2e::codegen::python calls gen_bindings::crate_has_serde to mirror this backend's
// from_json eligibility gate. ~keep
pub(crate) mod gen_bindings;
mod gen_stubs;
mod template_env;
pub mod trait_bridge;
mod type_map;

pub use gen_bindings::Pyo3Backend;