From 9f29d7c51fb59774e930b55d2717218d12aebaeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johanna=20S=C3=B6rng=C3=A5rd?= Date: Wed, 7 Jun 2023 10:35:40 +0200 Subject: [PATCH] Add comment to rayon feature --- Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f2ebfa3..9c1476b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,8 +4,6 @@ version = "4.0.0" edition = "2021" authors = ["Johanna Sörngård (jsorngard@gmail.com)"] -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] clap = { version = "4.1", features = ["derive"] } humantime = "2.1.0" @@ -13,4 +11,5 @@ rayon = {version = "1.6", optional = true} sysinfo = {version = "0.28.3", default_features = false} [features] +# Enable this feature to run all memory reads and writes in parallel. rayon = ["dep:rayon", "sysinfo/multithread"] \ No newline at end of file