-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
24 lines (21 loc) · 902 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-bow"
version = "0.1.1-alpha.0"
edition = "2018"
authors = ["Geordon Worley <[email protected]>"]
license = "MIT"
description = "Produces binary term frequency bit arrays for hamming-space bag of words"
repository = "https://github.com/rust-cv/hamming-bow"
documentation = "https://docs.rs/hamming-bow/"
keywords = ["bow", "lsh", "hamming", "words", "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 }