We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce4b7c1 commit 87fd707Copy full SHA for 87fd707
.gitignore
@@ -1,2 +1,5 @@
1
/target
2
Cargo.lock
3
+flamegraph.svg
4
+perf.data
5
+perf.data.old
Cargo.toml
@@ -23,15 +23,24 @@ __test = []
23
24
[dependencies]
25
crossbeam-utils = { version = "0.8.12", default-features = false }
26
-parking = { version = "2.0.0", optional = true }
+parking = { version = "2.0", optional = true }
27
28
[dev-dependencies]
29
-criterion = "0.3.4"
30
waker-fn = "1"
31
+[dev-dependencies.criterion]
32
+version = "0.4"
33
+default-features = false
34
+features = ["cargo_bench_support"]
35
+
36
[[bench]]
37
name = "bench"
38
harness = false
39
40
[lib]
41
bench = false
42
43
+[profile.release]
44
+codegen-units = 1
45
+debug = 1
46
+lto = "thin"
0 commit comments