alef 0.23.35

Opinionated polyglot binding generator for Rust libraries
Documentation
//! WASM free-function and utility code generation.

mod async_wrappers;
mod imports_helpers;
mod input_dto;
mod orchestration;
mod params;
mod returns;

pub(super) use imports_helpers::{emit_rustdoc, gen_env_shims};
pub(super) use input_dto::{gen_input_dto_for_type_with_cfg, should_have_input_dto};
pub(super) use orchestration::gen_function_with_emitted_dtos;
pub(super) use params::format_param_unused;
pub(super) use returns::{gen_wasm_unimplemented_body, wasm_wrap_return};

#[cfg(test)]
use input_dto::dto_field_conversion;
#[cfg(test)]
use input_dto::gen_input_dto_for_type;
#[cfg(test)]
use returns::{to_turbofish_from, type_has_default};

#[cfg(test)]
#[path = "functions/tests.rs"]
mod tests;