]> git.proxmox.com Git - cargo.git/blob - vendor/rdrand/src/changelog.rs
New upstream version 0.33.0
[cargo.git] / vendor / rdrand / src / changelog.rs
1 //! Project changelog
2
3 /// ## Breaking changes
4 ///
5 /// Crate gained an enabled-by-default `std` feature. If you relied on rdrand being `core`-able
6 /// change your dependency to appear as such:
7 ///
8 /// ```toml
9 /// rdrand = { version = "0.4", default-features = false }
10 /// ```
11 ///
12 /// This is done so that an advantage of the common feature detection functionality could be
13 /// employed by users that are not constrained by `core`. This functionality is faster, caches the
14 /// results and is shared between all users of the functionality.
15 ///
16 /// For `core` usage the feature detection has also been improved and will not be done if e.g.
17 /// crate is built with `rdrand` instructions enabled globally.
18 pub mod r0_4_0 {}
19
20 /// Crate now works on stable!
21 ///
22 /// ## Breaking changes
23 ///
24 /// * Updated to `rand_core = ^0.3`.
25 pub mod r0_3_0 {}