forked from unum-cloud/USearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 1.12 KB
/
Cargo.toml
File metadata and controls
41 lines (36 loc) · 1.12 KB
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
[package]
name = "usearch"
version = "2.24.0"
authors = ["Ash Vardanian <1983160+ashvardanian@users.noreply.github.com>"]
description = "Smaller & Faster Single-File Vector Search Engine from Unum"
edition = "2021"
license = "Apache-2.0"
publish = true
repository = "https://github.com/unum-cloud/usearch"
documentation = "https://unum-cloud.github.io/usearch"
include = [
"/rust/**",
"/include/**",
"/fp16/include/**",
"/simsimd/include/**",
"/simsimd/c/**",
"/stringzilla/include/**",
"/build.rs",
]
[features]
default = ["simsimd", "fp16lib"] # SimSIMD is enabled by default
simsimd = [] # No need to do anything to enable SimSIMD by default
fp16lib = [] # Without this FP16 we lose precision downcasting
openmp = [] # Optional: Users can enable OpenMP
[lib]
name = "usearch"
path = "rust/lib.rs"
[dependencies]
cxx = "1.0.160"
[build-dependencies]
cxx-build = "1.0.160"
[dev-dependencies]
fork_union = "2.1.1" # for concurrency tests
rand_distr = "0.5.1" # uniform floats distribution
rand_chacha = "0.9.0" # random number generator
rand = "0.9.1"