-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
24 lines (21 loc) · 907 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
[package]
name = "hamming-lsh"
version = "0.3.3-alpha.0"
edition = "2018"
authors = ["Geordon Worley <[email protected]>"]
license = "MIT"
description = "Produces locality-sensitive hashes (LHS) for hamming-space bags of features"
repository = "https://github.com/rust-cv/hamming-lsh"
documentation = "https://docs.rs/hamming-lsh/"
keywords = ["bow", "lsh", "hamming", "simhash", "bag"]
categories = ["no-std", "computer-vision"]
readme = "README.md"
[features]
serde1 = ["serde", "bitarray/serde"]
[dependencies]
bitarray = { version = "0.9.1", default-features = false }
hamming-dict = { version = "0.5.0", default-features = false, features = ["alloc"] }
serde = { version = "1.0.126", features = ["derive", "alloc"], default-features = false, optional = true }
[dev-dependencies]
rand = { version = "0.8.4", default-features = false }
rand_xoshiro = { version = "0.6.0", default-features = false }