1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
//! # Veloxx
//!
//! A high-performance, lightweight dataframe library for Rust, focusing on efficient
//! data manipulation with minimal overhead.
// pub use distributed::global_aggregate::GlobalAggregate;
// pub use distributed::global_sort::GlobalSort;
// pub use analytics::pca::PCA;
// Only available for non-WASM targets
// pub mod analytics; // Remove or comment out unresolved module
// Core exports
pub use crateCondition;
pub use crateSeries;
pub use crate;
// WASM exports
pub use ;
// Core modules
// Additional modules needed for compilation
// Optional modules that only build for native targets
// pub mod distributed; // Remove duplicate
// Re-export the main error type
pub use VeloxxError;
// WASM Bindings are implemented in a dedicated module to keep API consistent.
// Force Rust to use the directory module (wasm_bindings/mod.rs) even if a
// legacy file `wasm_bindings.rs` exists.