File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ alloc = ["rand_core/alloc"] # enables Vec and Box support (without std)
25
25
i128_support = [] # enables i128 and u128 support
26
26
simd_support = [] # enables SIMD support
27
27
serde1 = [" serde" , " serde_derive" , " rand_core/serde1" ] # enables serialization for PRNGs
28
- rust_1_27 = [] # enables RangeInclusive support for Rust >= 1.27
28
+ rust_1_27 = [" i128_support " ] # enables RangeInclusive, i128 and u128 support for Rust >= 1.27
29
29
30
30
[workspace ]
31
31
members = [" rand_core" , " rand_isaac" ]
Original file line number Diff line number Diff line change @@ -118,7 +118,8 @@ optional features are available:
118
118
- ` i128_support ` enables support for generating ` u128 ` and ` i128 ` values.
119
119
- ` log ` enables some logging via the ` log ` crate.
120
120
- ` nightly ` enables all unstable features (` i128_support ` , ` simd_support ` ).
121
- - ` rust_1_27 ` enables ` RangeInclusive ` support (requiring Rust >= 1.27).
121
+ - ` rust_1_27 ` enables ` i128_support ` and ` RangeInclusive ` support (requiring
122
+ Rust >= 1.27).
122
123
- ` serde1 ` enables serialization for some types, via Serde version 1.
123
124
- ` simd_support ` enables uniform sampling of SIMD types (integers and floats).
124
125
- ` stdweb ` enables support for ` OsRng ` on ` wasm32-unknown-unknown ` via ` stdweb `
You can’t perform that action at this time.
0 commit comments