blob: fd38d287e1ac4cde2a73a4343b1aa6e2e341d72b (
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
|
[package]
name = "hashx-bench"
version = "0.0.0"
publish = false
edition = "2024"
[[bench]]
name = "hashx_bench"
harness = false
[[bench]]
name = "hashx_cachegrind"
harness = false
[dev-dependencies]
criterion = "0.7.0"
hashx = { path = "../" }
iai = "0.1.1"
rand = "0.9"
tor-c-equix = { git = "https://gitlab.torproject.org/tpo/core/tor.git" }
[workspace]
members = ["."]
[profile.bench]
# Inherits release build settings, but adds full debug symbols.
debug = 2
strip = "none"
|