blob: f3956a143e9b63d9b405e9e3b9d9c7b3f4405386 (
plain)
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 = "pingora-ketama"
version = "0.3.0"
description = "Rust port of the nginx consistent hash function"
authors = ["Pingora Team <pingora@cloudflare.com>"]
license = "Apache-2.0"
edition = "2021"
repository = "https://github.com/cloudflare/pingora"
categories = ["caching", "algorithms"]
keywords = ["hash", "hashing", "consistent", "pingora"]
[dependencies]
crc32fast = "1.3"
[dev-dependencies]
criterion = "0.4"
csv = "1.2"
dhat = "0.3"
env_logger = "0.9"
log = { workspace = true }
rand = "0.8"
[[bench]]
name = "simple"
harness = false
[[bench]]
name = "memory"
harness = false
[features]
heap-prof = []
|