akar_common/lib.rs
1//! Akar common types and utilities.
2//!
3//! This crate contains the foundational types used by all other Akar modules:
4//! - Type system (LogicalType, PhysicalType, Value)
5//! - Vector and DataChunk (columnar data units)
6//! - Serialization primitives
7//! - Task system / thread pool
8//! - Memory management
9//! - File system abstraction
10
11pub mod arrow_vector;
12pub mod data_chunk;
13pub mod error;
14pub mod enums;
15pub mod file_system;
16pub mod gzip_file_system;
17pub mod memory;
18pub mod progress_bar;
19pub mod selection;
20pub mod serialization;
21pub mod task_system;
22pub mod types;
23pub mod vector;