-
Notifications
You must be signed in to change notification settings - Fork 26
/
Cargo.toml
32 lines (28 loc) · 928 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
[package]
name = "boomphf"
version = "0.6.0"
authors = ["Patrick Marks <[email protected]>"]
repository = "https://github.com/10XGenomics/rust-boomphf"
homepage = "https://github.com/10XGenomics/rust-boomphf"
license = "MIT"
description = "Scalable and Efficient Minimal Perfect Hash Functions"
documentation = "https://10xgenomics.github.io/rust-boomphf/master/boomphf/index.html"
readme = "README.md"
keywords = ["hashing", "minimal", "perfect"]
edition = "2021"
include = ["src/**/*", "benches/*", "LICENSE", "README.md"]
[dependencies]
serde = { version=">=1.0", optional = true, features=["derive"] }
rayon = { version=">=1.0", optional = true }
crossbeam-utils = { version=">=0.7.2, <0.9", optional = true }
wyhash = ">=0.3, <=0.5"
log = "0.4.*"
[dev-dependencies]
quickcheck = "1.0.2"
bencher = ">=0.1"
[[bench]]
name = "build"
harness = false
[features]
default = ["parallel"]
parallel = ["rayon", "crossbeam-utils"]