diff options
Diffstat (limited to '')
-rw-r--r-- | vendor/rustix/CONTRIBUTING.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/rustix/CONTRIBUTING.md b/vendor/rustix/CONTRIBUTING.md index c3c48521d..fca1cf15a 100644 --- a/vendor/rustix/CONTRIBUTING.md +++ b/vendor/rustix/CONTRIBUTING.md @@ -9,7 +9,7 @@ To keep compile times low, most features in rustix's API are behind cargo features. A special feature, `all-apis` enables all APIs, which is useful for testing. -``` +```console cargo test --features=all-apis ``` @@ -17,7 +17,7 @@ And, rustix has two backends, linux_raw and libc, and only one is used in any given build. To test with the libc backend explicitly, additionally enable the `use-libc` feature: -``` +```console cargo test --features=all-apis,use-libc ``` |