-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 729 Bytes
/
Cargo.toml
File metadata and controls
33 lines (28 loc) · 729 Bytes
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
[package]
name = "hashify"
version = "0.2.7"
description = "Fast perfect hashing without dependencies"
edition = "2024"
authors = [ "Stalwart Labs <hello@stalw.art>"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/stalwartlabs/hashify"
homepage = "https://github.com/stalwartlabs/hashify"
keywords = ["hash", "perfect", "minimal"]
categories = ["data-structures", "no-std"]
readme = "README.md"
resolver = "2"
[features]
force-32bit = []
[lib]
proc-macro = true
doctest = false
[dependencies]
syn = { version = "2.0", features = ["full"] }
quote = "1.0"
proc-macro2 = "1.0"
[dev-dependencies]
criterion = "0.5"
phf = { version = "0.11.3", features = ["macros"] }
[[bench]]
name = "phf_bench"
harness = false