Skip to content

Commit ceb25f8

Browse files
authored
Merge pull request #1153 from rozbb/propagate-std-getrandom
Propagate std and getrandom features
2 parents e359b27 + cc13807 commit ceb25f8

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

rand_chacha/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [Unreleased]
8+
- Made `rand_chacha` propagate the `std` feature down to `rand_core`
9+
710
## [0.3.1] - 2021-06-09
811
- add getters corresponding to existing setters: `get_seed`, `get_stream` (#1124)
912
- add serde support, gated by the `serde1` feature (#1124)

rand_chacha/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ serde_json = "1.0"
2525

2626
[features]
2727
default = ["std"]
28-
std = ["ppv-lite86/std"]
28+
std = ["ppv-lite86/std", "rand_core/std"]
2929
simd = [] # deprecated
3030
serde1 = ["serde"]

rand_chacha/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ Links:
3636

3737
`rand_chacha` is `no_std` compatible when disabling default features; the `std`
3838
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()`.
4041

4142

4243
# License

0 commit comments

Comments
 (0)