@@ -80,7 +80,7 @@ <h3 id="cargo_bench_package_selection">Package Selection</h3>
80
80
< dt class ="hdlist1 "> < strong > -p</ strong > < em > SPEC</ em > …​</ dt >
81
81
< dt class ="hdlist1 "> < strong > --package</ strong > < em > SPEC</ em > …​</ dt >
82
82
< dd >
83
- < p > Benchmark only the specified packages. See < a href ="commands/ cargo-pkgid.html "> cargo-pkgid(1)</ a > for the
83
+ < p > Benchmark only the specified packages. See < a href ="cargo-pkgid.html "> cargo-pkgid(1)</ a > for the
84
84
SPEC format. This flag may be specified multiple times.</ p >
85
85
</ dd >
86
86
< dt class ="hdlist1 "> < strong > --all</ strong > </ dt >
@@ -230,7 +230,7 @@ <h3 id="cargo_bench_compilation_options">Compilation Options</h3>
230
230
list of supported targets.</ p >
231
231
< div class ="paragraph ">
232
232
< p > This may also be specified with the < code > build.target</ code >
233
- < a href ="reference/config.html "> config value</ a > .</ p >
233
+ < a href ="../ reference/config.html "> config value</ a > .</ p >
234
234
</ div >
235
235
</ dd >
236
236
</ dl >
@@ -244,7 +244,7 @@ <h3 id="cargo_bench_output_options">Output Options</h3>
244
244
< dd >
245
245
< p > Directory for all generated artifacts and intermediate files. May also be
246
246
specified with the < code > CARGO_TARGET_DIR</ code > environment variable, or the
247
- < code > build.target-dir</ code > < a href ="reference/config.html "> config value</ a > . Defaults
247
+ < code > build.target-dir</ code > < a href ="../ reference/config.html "> config value</ a > . Defaults
248
248
to < code > target</ code > in the root of the workspace.</ p >
249
249
</ dd >
250
250
</ dl >
@@ -270,7 +270,7 @@ <h3 id="cargo_bench_display_options">Display Options</h3>
270
270
< p > Use verbose output. May be specified twice for "very verbose" output which
271
271
includes extra output such as dependency warnings and build script output.
272
272
May also be specified with the < code > term.verbose</ code >
273
- < a href ="reference/config.html "> config value</ a > .</ p >
273
+ < a href ="../ reference/config.html "> config value</ a > .</ p >
274
274
</ dd >
275
275
< dt class ="hdlist1 "> < strong > -q</ strong > </ dt >
276
276
< dt class ="hdlist1 "> < strong > --quiet</ strong > </ dt >
@@ -296,7 +296,7 @@ <h3 id="cargo_bench_display_options">Display Options</h3>
296
296
</ div >
297
297
< div class ="paragraph ">
298
298
< p > May also be specified with the < code > term.color</ code >
299
- < a href ="reference/config.html "> config value</ a > .</ p >
299
+ < a href ="../ reference/config.html "> config value</ a > .</ p >
300
300
</ div >
301
301
</ dd >
302
302
< dt class ="hdlist1 "> < strong > --message-format</ strong > < em > FMT</ em > </ dt >
@@ -351,11 +351,11 @@ <h3 id="cargo_bench_manifest_options">Manifest Options</h3>
351
351
< p > Beware that this may result in different dependency resolution than online
352
352
mode. Cargo will restrict itself to crates that are downloaded locally, even
353
353
if there might be a newer version as indicated in the local copy of the index.
354
- See the < a href ="commands/ cargo-fetch.html "> cargo-fetch(1)</ a > command to download dependencies before going
354
+ See the < a href ="cargo-fetch.html "> cargo-fetch(1)</ a > command to download dependencies before going
355
355
offline.</ p >
356
356
</ div >
357
357
< div class ="paragraph ">
358
- < p > May also be specified with the < code > net.offline</ code > < a href ="reference/config.html "> config value</ a > .</ p >
358
+ < p > May also be specified with the < code > net.offline</ code > < a href ="../ reference/config.html "> config value</ a > .</ p >
359
359
</ div >
360
360
</ dd >
361
361
</ dl >
@@ -391,7 +391,7 @@ <h3 id="cargo_bench_miscellaneous_options">Miscellaneous Options</h3>
391
391
< dt class ="hdlist1 "> < strong > --jobs</ strong > < em > N</ em > </ dt >
392
392
< dd >
393
393
< p > Number of parallel jobs to run. May also be specified with the
394
- < code > build.jobs</ code > < a href ="reference/config.html "> config value</ a > . Defaults to
394
+ < code > build.jobs</ code > < a href ="../ reference/config.html "> config value</ a > . Defaults to
395
395
the number of CPUs.</ p >
396
396
</ dd >
397
397
</ dl >
@@ -405,7 +405,7 @@ <h2 id="cargo_bench_profiles">PROFILES</h2>
405
405
< div class ="paragraph ">
406
406
< p > Profiles may be used to configure compiler options such as optimization levels
407
407
and debug settings. See
408
- < a href ="reference/manifest.html#the-profile-sections "> the reference</ a >
408
+ < a href ="../ reference/manifest.html#the-profile-sections "> the reference</ a >
409
409
for more details.</ p >
410
410
</ div >
411
411
< div class ="paragraph ">
@@ -416,7 +416,7 @@ <h2 id="cargo_bench_profiles">PROFILES</h2>
416
416
</ div >
417
417
< div class ="paragraph ">
418
418
< p > If you need a debug build of a benchmark, try building it with
419
- < a href ="commands/ cargo-build.html "> cargo-build(1)</ a > which will use the < code > test</ code > profile which is by default
419
+ < a href ="cargo-build.html "> cargo-build(1)</ a > which will use the < code > test</ code > profile which is by default
420
420
unoptimized and includes debug information. You can then run the debug-enabled
421
421
benchmark manually.</ p >
422
422
</ div >
@@ -426,7 +426,7 @@ <h2 id="cargo_bench_profiles">PROFILES</h2>
426
426
< h2 id ="cargo_bench_environment "> ENVIRONMENT</ h2 >
427
427
< div class ="sectionbody ">
428
428
< div class ="paragraph ">
429
- < p > See < a href ="reference/environment-variables.html "> the reference</ a > for
429
+ < p > See < a href ="../ reference/environment-variables.html "> the reference</ a > for
430
430
details on environment variables that Cargo reads.</ p >
431
431
</ div >
432
432
</ div >
@@ -477,7 +477,7 @@ <h2 id="cargo_bench_examples">EXAMPLES</h2>
477
477
< h2 id ="cargo_bench_see_also "> SEE ALSO</ h2 >
478
478
< div class ="sectionbody ">
479
479
< div class ="paragraph ">
480
- < p > < a href ="commands/ index.html "> cargo(1)</ a > , < a href ="commands/ cargo-test.html "> cargo-test(1)</ a > </ p >
480
+ < p > < a href ="index.html "> cargo(1)</ a > , < a href ="cargo-test.html "> cargo-test(1)</ a > </ p >
481
481
</ div >
482
482
</ div >
483
483
</ div >
0 commit comments