Research-Stack/5-Applications/parquet_compressor/Cargo.toml
dependabot[bot] 84da520be9 Bump indicatif in /5-Applications/parquet_compressor
Bumps [indicatif](https://github.com/console-rs/indicatif) from 0.17.11 to 0.18.4.
- [Release notes](https://github.com/console-rs/indicatif/releases)
- [Commits](https://github.com/console-rs/indicatif/compare/0.17.11...0.18.4)

---
updated-dependencies:
- dependency-name: indicatif
  dependency-version: 0.18.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit 1b51e05db59c69a3d613e7a41eb76cbffc216400)
2026-05-20 23:03:27 -05:00

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 = "58.3"
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.12"
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.1"
dirs = "5.0"
[[bin]]
name = "math_self_discover"
path = "src/math_self_discover.rs"