mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-08-11 08:20:35 +00:00
Bumps [arrow](https://github.com/apache/arrow-rs) from 58.3.0 to 59.0.0. - [Release notes](https://github.com/apache/arrow-rs/releases) - [Changelog](https://github.com/apache/arrow-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/apache/arrow-rs/compare/58.3.0...59.0.0) --- updated-dependencies: - dependency-name: arrow dependency-version: 59.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
35 lines
849 B
TOML
35 lines
849 B
TOML
[package]
|
|
name = "parquet_compressor"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
parquet = { version = "58.3", default-features = false, features = ["arrow", "zstd"] }
|
|
arrow = "59.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
rayon = "1.8"
|
|
clap = { version = "4.4", features = ["derive"] }
|
|
indicatif = "0.18"
|
|
byteorder = "1.5"
|
|
sysinfo = "0.30"
|
|
tokio = { version = "1.35", features = ["sync", "rt", "rt-multi-thread"] }
|
|
anyhow = "1.0"
|
|
divsufsort = "2.0"
|
|
itertools = "0.14"
|
|
flate2 = "1.0" # For Gzip if needed
|
|
zstd = "0.13" # For high-quality compression
|
|
wgpu = "0.19"
|
|
bytemuck = { version = "1.14", features = ["derive"] }
|
|
pollster = "0.3"
|
|
chrono = "0.4"
|
|
glob = "0.3"
|
|
pathdiff = "0.2"
|
|
regex = "1.11"
|
|
ahash = "0.8"
|
|
dashmap = "6.2"
|
|
dirs = "5.0"
|
|
|
|
[[bin]]
|
|
name = "math_self_discover"
|
|
path = "src/math_self_discover.rs"
|