Skip to content

Commit 87fd707

Browse files
committed
chore: bump criterion
1 parent ce4b7c1 commit 87fd707

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
/target
22
Cargo.lock
3+
flamegraph.svg
4+
perf.data
5+
perf.data.old

Cargo.toml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,24 @@ __test = []
2323

2424
[dependencies]
2525
crossbeam-utils = { version = "0.8.12", default-features = false }
26-
parking = { version = "2.0.0", optional = true }
26+
parking = { version = "2.0", optional = true }
2727

2828
[dev-dependencies]
29-
criterion = "0.3.4"
3029
waker-fn = "1"
3130

31+
[dev-dependencies.criterion]
32+
version = "0.4"
33+
default-features = false
34+
features = ["cargo_bench_support"]
35+
3236
[[bench]]
3337
name = "bench"
3438
harness = false
3539

3640
[lib]
3741
bench = false
42+
43+
[profile.release]
44+
codegen-units = 1
45+
debug = 1
46+
lto = "thin"

0 commit comments

Comments
 (0)