aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorLia Lenckowski <lialenck@protonmail.com>2023-09-20 13:34:35 +0200
committerLia Lenckowski <lialenck@protonmail.com>2023-09-20 13:34:35 +0200
commit2d127740cf30cfbd3875a406ecc42ef6ebde60e4 (patch)
treecadde76fd6d6c0d1258242d21bec4f94ff4e903d /Cargo.toml
parentae445f481e9ae96b41d15ff22592f40ef5432302 (diff)
downloadembeddings-sort-2d127740cf30cfbd3875a406ecc42ef6ebde60e4.tar
embeddings-sort-2d127740cf30cfbd3875a406ecc42ef6ebde60e4.tar.bz2
embeddings-sort-2d127740cf30cfbd3875a406ecc42ef6ebde60e4.tar.zst
~3x speed improvement: replace priority queues and prim's algoritm with sorted vectors and krushkal's algorithm
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 20d6077..6fa36c6 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -9,7 +9,6 @@ edition = "2021"
image = "0"
xdg = "2"
clap = { version = "4", features = ["derive"] }
-priority-queue = "1"
rayon = "1"
indicatif = { version = "0", features = ["rayon"] }
sled = "0"
@@ -21,3 +20,4 @@ anyhow = "1"
pathdiff = "0"
reflink-copy = "0"
multiset = "0"
+partitions = "0"