-
Notifications
You must be signed in to change notification settings - Fork 590
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (25 loc) · 801 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (25 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "ruvector-maxsim"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
description = "ColBERT-style multi-vector MaxSim late interaction search for ruvector: higher recall for multi-facet documents without single-embedding averaging loss"
[[bin]]
name = "maxsim-demo"
path = "src/main.rs"
[[bench]]
name = "maxsim_bench"
harness = false
[dependencies]
rand = { workspace = true, features = ["small_rng"] }
rand_distr = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
rayon = { workspace = true }
[dev-dependencies]
criterion = { workspace = true }