File tree 3 files changed +6
-2
lines changed
3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ Unreleased]
8
+ - Made ` rand_chacha ` propagate the ` std ` feature down to ` rand_core `
9
+
7
10
## [ 0.3.1] - 2021-06-09
8
11
- add getters corresponding to existing setters: ` get_seed ` , ` get_stream ` (#1124 )
9
12
- add serde support, gated by the ` serde1 ` feature (#1124 )
Original file line number Diff line number Diff line change @@ -25,6 +25,6 @@ serde_json = "1.0"
25
25
26
26
[features ]
27
27
default = [" std" ]
28
- std = [" ppv-lite86/std" ]
28
+ std = [" ppv-lite86/std" , " rand_core/std " ]
29
29
simd = [] # deprecated
30
30
serde1 = [" serde" ]
Original file line number Diff line number Diff line change 36
36
37
37
` rand_chacha ` is ` no_std ` compatible when disabling default features; the ` std `
38
38
feature can be explicitly required to re-enable ` std ` support. Using ` std `
39
- allows detection of CPU features and thus better optimisation.
39
+ allows detection of CPU features and thus better optimisation. Using ` std `
40
+ also enables ` getrandom ` functionality, such as ` ChaCha20Rng::from_entropy() ` .
40
41
41
42
42
43
# License
You can’t perform that action at this time.
0 commit comments