about summary refs log blame commit diff
path: root/users/edef/narinfo2parquet/Cargo.toml
blob: 5a8c9bdbfa15b9a33aa1d11c8b0fe69d0d9ad857 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                             
                                                                     


                       


                                                      
                     
                  





                        
[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 = "../../../tvix/nix-compat" }
tempfile-fast = "0.3.4"
zstd = "0.13.0"

# See https://github.com/pola-rs/polars/issues/19157
hashbrown = { version = "0.14.5", features = ["raw"] }

[dependencies.polars]
version = "0.36.2"
default-features = false
features = [
    "parquet",
    "polars-io",
    "dtype-categorical"
]