201d8f0cf2
Deduping early saves a fair bit of memory, but the extra hashing is costly. We switch to FxHash, since we don't need a DoS-proof hash, but we do need it to be *fast*. Change-Id: Ic6b7010874c417862baa9b882593208c8dd1d5e6 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12648 Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
20 lines
486 B
TOML
20 lines
486 B
TOML
[package]
|
|
name = "weave"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
# TODO(edef): cut down on required features, this is kind of a grab bag right now
|
|
[dependencies]
|
|
anyhow = { version = "1.0.79", features = ["backtrace"] }
|
|
hashbrown = "0.14.3"
|
|
nix-compat = { version = "0.1.0", path = "../../../tvix/nix-compat" }
|
|
safer_owning_ref = "0.5.0"
|
|
rayon = "1.8.1"
|
|
rustc-hash = "2.0.0"
|
|
|
|
[dependencies.polars]
|
|
version = "0.36.2"
|
|
features = ["parquet", "lazy", "streaming"]
|