Files
unchecked-io/Cargo.toml

66 lines
1.5 KiB
TOML
Raw Normal View History

2025-11-17 14:23:03 -07:00
[package]
name = "unchecked-io"
2025-11-23 12:45:31 -07:00
version = "0.1.1"
2025-11-18 12:40:08 -07:00
authors = ["Billthemaker"] # Replace with your name or alias
license = "BSL-1" # Good practice for open-source
edition = "2024"
2025-11-17 14:23:03 -07:00
2025-11-17 22:58:09 -07:00
[lib]
2025-11-17 14:23:03 -07:00
name = "unchecked_io"
2025-11-17 22:58:09 -07:00
crate-type = ["cdylib", "rlib"]
2025-11-17 14:23:03 -07:00
[dependencies]
# 1. Python Bindings for FFI
pyo3 = { version = "0.27.1", features = ["extension-module"] }
2025-11-23 12:53:54 -07:00
2025-11-18 19:30:43 -07:00
2025-11-17 22:58:09 -07:00
# 2. Configuration Parsing (YAML)
2025-11-17 14:23:03 -07:00
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
2025-11-17 22:58:09 -07:00
# 3. Apache Arrow and Data Handling
# FIX: Add the "compute" feature to get concat_batches
2025-11-18 09:59:49 -07:00
arrow = "57.0.0"
2025-11-17 22:58:09 -07:00
# 4. Asynchronous Runtime (Essential for I/O and Postgres)
tokio = { version = "1.37", features = ["full"] }
2025-11-17 22:58:09 -07:00
# 5. Database Connection (Postgres)
tokio-postgres = "0.7"
2025-11-18 12:40:08 -07:00
deadpool-postgres = "0.14"
2025-11-17 22:58:09 -07:00
2025-11-18 12:40:08 -07:00
# 6. Error Handling Crate
2025-11-17 22:58:09 -07:00
anyhow = "1.0"
2025-11-17 14:23:03 -07:00
2025-11-18 12:40:08 -07:00
# 7. Futures Utilities
2025-11-17 22:58:09 -07:00
futures-util = "0.3"
2025-11-17 14:23:03 -07:00
2025-11-17 22:58:09 -07:00
# 8. Byte Buffer Management
bytes = "1.6"
# 9. Binary Data Reading (NEW)
byteorder = "1.5"
# 10. Timestamp Handling (NEW)
2025-11-17 14:23:03 -07:00
chrono = "0.4"
2025-11-17 22:58:09 -07:00
# 11. UUID Handling (NEW)
uuid = { version = "1.8", features = ["serde", "v4"] }
2025-11-17 22:58:09 -07:00
# 12. Arrow <-> Python Bridge (NEW)
2025-11-18 09:59:49 -07:00
pyo3-arrow = "0.15.0"
2025-11-17 22:58:09 -07:00
# 13. System CPU Count (NEW)
2025-11-18 12:40:08 -07:00
num_cpus = "1.16"
tracing-subscriber = { version = "0.3", features = ["registry", "env-filter"], optional = true}
tracing-tracy = { version = "=0.11.2", optional = true }
tracing = {version ="0.1.41", optional = true }
async-channel = "2.5.0"
2025-11-18 19:30:43 -07:00
2025-11-18 20:51:03 -07:00
[target.'cfg(not(target_env = "msvc"))'.dependencies]
mimalloc = { version = "0.1.39" }
async-channel = "2.3"