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 b3a1448 commit 2506c9fCopy full SHA for 2506c9f
benches/Cargo.toml
@@ -71,12 +71,12 @@ name = "sync_semaphore"
71
path = "sync_semaphore.rs"
72
harness = false
73
74
-[[target.'cfg(unix)'.bench]]
+[[bench]]
75
name = "signal"
76
path = "signal.rs"
77
78
79
80
name = "fs"
81
path = "fs.rs"
82
benches/fs.rs
@@ -1,3 +1,5 @@
1
+#![cfg(unix)]
2
+
3
use tokio_stream::StreamExt;
4
5
use tokio::fs::File;
benches/signal.rs
@@ -1,4 +1,5 @@
//! Benchmark the delay in propagating OS signals to any listeners.
use criterion::{criterion_group, criterion_main, Criterion};
use std::future::Future;
0 commit comments