Skip to content

Commit

Permalink
Cargo.toml doc: address review
Browse files Browse the repository at this point in the history
  • Loading branch information
dhardy committed Mar 10, 2020
1 parent ca75582 commit e96cc6f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Expand Up @@ -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"
Expand All @@ -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
Expand Down

0 comments on commit e96cc6f

Please sign in to comment.