-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (38 loc) · 1.02 KB
/
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
39
40
41
42
43
[package]
name = "letsearch"
version = "0.1.14"
edition = "2021"
[dependencies]
actix-web = "4.9.0"
anyhow = "1.0.93"
async-trait = "0.1.83"
clap = { version = "4.5.21", features = ["derive"] }
duckdb = { version = "1.1.1", features = ["bundled"] }
ort = {version = "2.0.0-rc.8", features = ["ndarray", "half",]}
half = {version = "2.1"}
ndarray = {version = "0.16"}
tokenizers = "0.20.3"
tokio = { version = "1.41.1", features = ["full"]}
env_logger = "0.11.5"
log = "0.4.22"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
chrono = "0.4.38"
rayon = "1.10.0"
usearch = "2.16.6"
indicatif = "0.17.9"
reqwest = { version = "0.12.9", features = ["json", "stream"] }
futures = "0.3.31"
criterion = {version = "0.5.1", features = ["async_tokio"]}
[[bench]]
name = "benchmarks"
harness = false
[target.'cfg(windows)'.dependencies]
ort = { version = "2.0.0-rc.8", features = ["load-dynamic", "ndarray", "half"]}
[profile.release]
opt-level = 3
lto = true
[features]
default = []
heavyweight = []
cuda = ["ort/cuda"]