Skip to content

Commit 4c6fab6

Browse files
committed
Be more consistent with use of --features.
1 parent 6905a48 commit 4c6fab6

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

collector/benchmarks/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ They mostly consist of real-world crates.
2929
- **html5ever-0.26.0**: An HTML parser. Stresses macro parsing code.
3030
- **hyper-0.14.18**: A fairly large crate. Utilizes async/await, and used by
3131
many Rust programs. The crate uses cargo features to enable large portions of its
32-
structure and is built with `--features client,http1,http2,server,stream`.
32+
structure and is built with `--features=client,http1,http2,server,stream`.
3333
- **image-0.24.1**: Basic image processing functions and methods for
3434
converting to and from various image formats. Used often in graphics
3535
programming.
@@ -39,7 +39,7 @@ They mostly consist of real-world crates.
3939
Rust programs.
4040
- **stm32f4-0.14.0**: A crate that has many thousands of blanket impl blocks.
4141
It uses cargo features to enable large portions of its structure and is
42-
built with `--features stm32f410` to have faster benchmarking times.
42+
built with `--features=stm32f410` to have faster benchmarking times.
4343
- **syn-1.0.89**: A library for parsing Rust code. An important part of the Rust
4444
ecosystem.
4545
- **unicode-normalization-0.1.19**: Unicode character composition and decomposition
@@ -143,7 +143,7 @@ Rust code being written today.
143143
- **regex**: See above. This is an older version of the crate.
144144
- **piston-image**: See above. This is an older version of the `image` crate.
145145
- **style-servo**: An old version of Servo's `style` crate. A large crate, and
146-
one used by old versions of Firefox.
146+
one used by old versions of Firefox. Built with `--features=gecko`.
147147
- **syn**: See above. This is an older version (0.11.11) of the crate.
148148
- **tokio-webpush-simple**: A simple web server built with a very old version
149149
of tokio. Uses futures a lot, but doesn't use `async`/`await`.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"cargo_opts": "--features client,http1,http2,server,stream",
2+
"cargo_opts": "--features=client,http1,http2,server,stream",
33
"category": "primary"
44
}

collector/benchmarks/style-servo/perf-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"cargo_opts": "--features gecko",
2+
"cargo_opts": "--features=gecko",
33
"cargo_rustc_opts": "--cap-lints=warn",
44
"cargo_toml": "components/style/Cargo.toml",
55
"runs": 1,

0 commit comments

Comments
 (0)