generated from URI-ABD/devops
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
51 lines (42 loc) · 978 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "distances"
version = "1.6.2"
authors = [
"Najib Ishaq <[email protected]>",
"Noah Daniels <[email protected]>",
"Tom Howard <[email protected]>",
]
edition = "2021"
description = "Fast and generic distance functions for high-dimensional data."
license = "MIT"
readme = "README.md"
# Publishing lock.
# When you're ready to start publishing, set publish to true
# and update the release github action.
publish = true
[dependencies]
rand = "0.8.5"
# libm = "0.2.7" # no-std
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
symagen = "0.2.1"
# symagen = { version = "0.2.0", path = "../SyMaGen" }
test-case = "3.2.1"
[[bench]]
name = "inv-sqrt"
harness = false
[[bench]]
name = "big-vectors"
harness = false
[[bench]]
name = "big-lp"
harness = false
[[bench]]
name = "big-strings"
harness = false
[[bench]]
name = "needleman-wunsch"
harness = false
[[bench]]
name = "simd-euclidean"
harness = false