codemp/src/ffi/mod.rs

23 lines
621 B
Rust
Raw Normal View History

2024-09-04 21:37:35 +02:00
//! ### FFI
//! The glue code for FFI (Foreign Function Interface) in various languages, each gated behind
//! a feature flag.
2024-09-04 21:37:35 +02:00
//!
//! For all except Java, the resulting shared object is ready to use, but external packages are
//! available to simplify dependency management and provide type hints in editor.
2024-09-04 21:37:35 +02:00
/// java bindings, built with [jni]
2024-03-09 23:27:08 +01:00
#[cfg(feature = "java")]
pub mod java;
2024-09-04 21:37:35 +02:00
/// lua bindings, built with [mlua]
#[cfg(feature = "lua")]
pub mod lua;
2024-03-10 12:42:56 +01:00
2024-09-04 21:37:35 +02:00
/// javascript bindings, built with [napi]
2024-03-10 12:42:56 +01:00
#[cfg(feature = "js")]
pub mod js;
2024-09-04 21:37:35 +02:00
/// python bindings, built with [pyo3]
#[cfg(feature = "python")]
pub mod python;