-
Notifications
You must be signed in to change notification settings - Fork 138
/
Cargo.toml
35 lines (31 loc) · 959 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
[package]
name = "usearch"
version = "2.16.2"
authors = ["Ash Vardanian <[email protected]>"]
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"
[build-dependencies]
cxx-build = "1.0"