We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1d8a268 + 26938e1 commit 9d8903fCopy full SHA for 9d8903f
collector/benchmarks/token-stream-stress/Cargo.toml
@@ -5,11 +5,15 @@ edition = "2018"
5
publish = false
6
7
[lib]
8
+# Documenting the library means that we try to rebuild it after src/main.rs
9
+# changes, as of rust-lang/cargo#10172. Since our benchmarks don't actually care
10
+# about it being built, disable that.
11
+doc = false
12
path = "src/lib.rs"
13
proc-macro = true
14
15
[[bin]]
-name = "token-stream-stress"
16
+name = "token-stream-stress-bin"
17
path = "src/main.rs"
18
-[workspace]
19
+[workspace]
collector/benchmarks/token-stream-stress/perf-config.json
@@ -1,4 +1,4 @@
1
{
2
- "cargo_opts": "--bin token-stream-stress",
+ "cargo_opts": "--bin token-stream-stress-bin",
3
"touch_file": "src/main.rs"
4
}
0 commit comments