boltffi_cli 0.25.2

CLI for BoltFFI - generate Swift, Kotlin, and WASM bindings from Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod csharp;
mod dart;
mod java;
mod kmp;
mod kotlin;
mod python;
mod swift;
mod typescript;

pub use csharp::CSharpGenerator;
pub use dart::DartGenerator;
pub use java::JavaGenerator;
pub use kmp::KMPGenerator;
pub use kotlin::KotlinGenerator;
pub use python::PythonGenerator;
pub use swift::SwiftGenerator;
pub use typescript::TypeScriptGenerator;