diff options
| author | Lia Lenckowski <lialenck@protonmail.com> | 2024-03-03 19:40:16 +0100 |
|---|---|---|
| committer | Lia Lenckowski <lialenck@protonmail.com> | 2024-03-03 19:40:16 +0100 |
| commit | 3b670fe70de4b52b9a3f8614b42fb94fe49b3548 (patch) | |
| tree | 1119b13ab7119d8dc8bbaaebd77a9ec164eddac0 /Cargo.toml | |
| parent | 94185d8b39af5a96a61ffb4df7a2d76dcd7afa49 (diff) | |
| download | embeddings-sort-3b670fe70de4b52b9a3f8614b42fb94fe49b3548.tar embeddings-sort-3b670fe70de4b52b9a3f8614b42fb94fe49b3548.tar.bz2 embeddings-sort-3b670fe70de4b52b9a3f8614b42fb94fe49b3548.tar.zst | |
add hash seed option for reproducible behaviour
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 21 |
1 files changed, 11 insertions, 10 deletions
@@ -6,18 +6,19 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -image = "0" -xdg = "2" +ahash = "0" +anyhow = "1" clap = { version = "4", features = ["derive"] } -rayon = "1" +image = "0" indicatif = { version = "0", features = ["rayon"] } -sled = "0" -typed-sled = "0" +mset = "0" +partitions = "0" +pathdiff = "0" +rayon = "1" +reflink-copy = "0" serde = "1" serde_json = "1" sha2 = "0" -anyhow = "1" -pathdiff = "0" -reflink-copy = "0" -multiset = "0" -partitions = "0" +sled = "0" +typed-sled = "0" +xdg = "2" |