-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
48 lines (41 loc) · 962 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
[package]
authors = ["aljun <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
name = "horapy"
version = "0.0.1"
description = "Hora Search Everywhere"
homepage = "https://horasearch.com"
readme = "README.md"
repository = "https://github.com/hora-search/hora"
categories = ["algorithms", "data-structures"]
keywords = ["intelligence", "neighbor", "SIMD", "search", "distance"]
[profile.dev]
codegen-units = 4
debug = 1
debug-assertions = true
incremental = true
lto = false
opt-level = 0
overflow-checks = false
panic = 'unwind'
rpath = false
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = "fat"
opt-level = 3
overflow-checks = false
panic = 'unwind'
rpath = false
[lib]
crate-type = ["cdylib"]
name = "horapy"
[dependencies]
numpy = "0.14.1"
hora = {version = "0.1.0", features = ["simd"]}
[dependencies.pyo3]
features = ["extension-module", "multiple-pymethods"]
version = "0.14.1"