forked from ashvardanian/SimSIMD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (31 loc) · 925 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
36
[package]
name = "simsimd"
description = "Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm"
version = "3.8.0"
edition = "2021"
license = "Apache-2.0"
authors = [
"Ash Vardanian <[email protected]>",
"Pedro Planel <[email protected]>",
]
repository = "https://github.com/ashvardanian/SimSIMD"
documentation = "https://docs.rs/simsimd"
homepage = "https://ashvardanian.com/posts/simsimd-faster-scipy"
keywords = ["simd", "search", "linear-algebra", "vector"]
categories = ["mathematics", "hardware-support", "no-std", "wasm", "external-ffi-bindings"]
[lib]
name = "simsimd"
path = "rust/lib.rs"
[build-dependencies]
cc = "1.0.83"
[[bench]]
name = "cosine"
harness = false
path = "rust/benches/cosine.rs"
[[bench]]
name = "sqeuclidean"
harness = false
path = "rust/benches/sqeuclidean.rs"
[dev-dependencies]
criterion = { version = "0.5.1" }
rand = { version = "0.8.5" }