-
Notifications
You must be signed in to change notification settings - Fork 312
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (35 loc) · 1006 Bytes
/
Cargo.toml
File metadata and controls
40 lines (35 loc) · 1006 Bytes
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
[package]
authors = ["Ash Vardanian <1983160+ashvardanian@users.noreply.github.com>"]
description = "Smaller & Faster Single-File Vector Search Engine from Unum"
documentation = "https://unum-cloud.github.io/USearch"
edition = "2021"
include = [
"/rust/**",
"/include/**",
"/build.rs",
]
license = "Apache-2.0"
name = "usearch"
publish = true
repository = "https://github.com/unum-cloud/USearch"
version = "2.25.1"
[features]
default = ["numkong"]
numkong = ["dep:numkong"]
openmp = []
simsimd = ["numkong"]
[lib]
name = "usearch"
path = "rust/lib.rs"
[dependencies]
cxx = "1.0.194"
# For local NumKong development, add a `[patch.crates-io]` override in your
# personal `.cargo/config.toml` rather than editing this file.
numkong = {version = ">=7.5.0", optional = true}
[build-dependencies]
cxx-build = "1.0.194"
[dev-dependencies]
fork_union = "2.1.1" # for concurrency tests
rand = "0.10.0"
rand_chacha = "0.10.0" # random number generator
rand_distr = "0.6.0" # uniform floats distribution