finlib 0.0.10

Quant finance functions implemented in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! FFI specific functionality to define the struct function interfaces in Python and WASM

#[cfg(feature = "py")]
pub mod py;
// #[cfg(feature = "wasm")]
#[cfg(all(
    target_arch = "wasm32",
    feature = "wasm",
    not(any(target_os = "emscripten", target_os = "wasi", target_os = "linux"))
))]
pub mod wasm;