tvl-depot/tvix/tools/narinfo2parquet/Cargo.toml
edef f4963cdfd8 chore(tvix/tools/narinfo2parquet): polars 0.34.2 -> 0.36.2
Change-Id: Ib17a7bbe560000c3fef3ba6182819f710d707909
Reviewed-on: https://cl.tvl.fyi/c/depot/+/10967
Tested-by: BuildkiteCI
Reviewed-by: flokli <flokli@flokli.de>
2024-02-19 16:03:14 +00:00

25 lines
557 B
TOML

[package]
name = "narinfo2parquet"
version = "0.1.0"
edition = "2021"
# We can't join the //tvix workspace, because that locks zstd
# at an ancient version, which is incompatible with polars
[workspace]
members = ["."]
[dependencies]
anyhow = { version = "1.0.75", features = ["backtrace"] }
jemallocator = "0.5.4"
nix-compat = { version = "0.1.0", path = "../../nix-compat" }
tempfile-fast = "0.3.4"
zstd = "0.13.0"
[dependencies.polars]
version = "0.36.2"
default-features = false
features = [
"parquet",
"polars-io",
"dtype-categorical"
]