From e96cc6fed51876e0262fded9f905bc966f245090 Mon Sep 17 00:00:00 2001 From: Diggory Hardy Date: Tue, 10 Mar 2020 12:14:36 +0000 Subject: [PATCH] Cargo.toml doc: address review --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4a5e4456829..e0581952329 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,8 +26,8 @@ default = ["std", "std_rng"] nightly = ["simd_support"] # enables all features requiring nightly rust serde1 = [] # does nothing, deprecated -# Option: without "std" rand uses libcore; this option enables functionality -# expected to be available on a standard platform. +# Option (enabled by default): without "std" rand uses libcore; this option +# enables functionality expected to be available on a standard platform. std = ["rand_core/std", "rand_chacha/std", "alloc", "getrandom", "libc"] # Option: "alloc" enables support for Vec and Box when not using "std" @@ -36,10 +36,10 @@ alloc = ["rand_core/alloc"] # Option: use getrandom package for seeding getrandom = ["rand_core/getrandom"] -# Option: experimental SIMD support +# Option (requires nightly): experimental SIMD support simd_support = ["packed_simd"] -# Option: enable StdRng (enabled by default) +# Option (enabled by default): enable StdRng std_rng = ["rand_chacha", "rand_hc"] # Option: enable SmallRng