-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
42 lines (33 loc) · 980 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
[package]
authors = ["aljun <gagasalamer@outlook.com>"]
edition = "2018"
license = "Apache-2.0"
name = "horajs"
readme = "README.md"
version = "0.1.3"
description = "Hora Search Everywhere"
homepage = "https://horasearch.com"
repository = "https://github.com/hora-search/hora-wasm"
categories = ["algorithms", "data-structures", "wasm"]
keywords = ["intelligence", "neighbor", "SIMD", "search", "distance"]
[lib]
crate-type = ["cdylib"]
[profile.release]
lto = true
[package.metadata.wasm-pack.profile.dev]
wasm-opt = false
[package.metadata.wasm-pack.profile.release]
wasm-opt = false
[features]
default = ["wee_alloc"]
[dependencies]
cfg-if = "1.0.0"
getrandom = {version = "0.2.3", features = ["js"]}
real_hora = {package = "hora", version = "0.1.1", features=["no_thread"]}
wasm-bindgen = "0.2.75"
wee_alloc = {version = "0.4.5", optional = true}
console_error_panic_hook = "0.1.6"
[dev-dependencies]
futures = "0.3.16"
js-sys = "0.3.52"
wasm-bindgen-test = "0.3.25"