improving efficiency and writing to file

This commit is contained in:
Bill
2025-11-17 16:22:54 -07:00
parent da34dbda07
commit d84e52a9f3
4 changed files with 387 additions and 93 deletions

View File

@@ -13,7 +13,7 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
# 1. Python Bindings for FFI
pyo3 = { version = "0.20", features = ["extension-module"] }
pyo3 = { version = "0.27.1", features = ["extension-module"] }
# 2. Configuration Parsing
serde = { version = "1.0", features = ["derive"] }
@@ -32,4 +32,5 @@ futures-util = "0.3.31"
bytes = "1.11.0"
byteorder = "1.5.0"
chrono = "0.4"
uuid = { version = "1.8", features = ["serde", "v4"] }
uuid = { version = "1.8", features = ["serde", "v4"] }
pyo3-arrow = "0.13"