Skip to main content

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 enums;
14pub mod error;
15pub mod extension_utils;
16pub mod file_system;
17pub mod gzip_file_system;
18pub mod memory;
19pub mod memory_account;
20pub mod progress_bar;
21pub mod selection;
22pub mod serialization;
23pub mod task_system;
24pub mod types;
25pub mod vector;