-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
38 lines (33 loc) · 966 Bytes
/
Cargo.toml
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
31
32
33
34
35
36
37
38
[package]
name = "rustserini"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
candle-core = { git = "https://github.com/huggingface/candle.git", version = "0.8.0" }
candle-transformers = { git = "https://github.com/huggingface/candle.git", version = "0.8.0" }
candle-nn = { git = "https://github.com/huggingface/candle.git", version = "0.8.0" }
hf-hub = "0.3.2"
j4rs = "0.21.0"
indicatif = "0.17.9"
records = "0.2.0"
bzip2 = "0.4.4"
anyhow = "1.0.93"
structopt = "0.3.26"
tokenizers = "0.20.3"
kdam = "0.6.0"
flate2 = "1.0.35"
serde_derive = "1.0.215"
serde = "1.0.215"
serde_json = "1.0.132"
ndarray = "0.16.1"
ndarray-rand = "0.15.0"
faiss = "0.12.1"
clap = { version = "4.5.21", features = ["derive"] }
[[example]]
name = "json_embedding_writer"
[[example]]
name = "faiss_embedding_writer"
[[bin]]
name = "lucene_indexer"
path = "src/searcher/lucene/index.rs"