forked from unum-cloud/usearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (30 loc) · 938 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
[package]
name = "usearch"
version = "2.15.1"
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/**",
"/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"
[build-dependencies]
cxx-build = "1.0"