aboutsummaryrefslogtreecommitdiff
path: root/vendor/rdrand/src/changelog.rs
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
committerValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
commita990de90fe41456a23e58bd087d2f107d321f3a1 (patch)
tree15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/rdrand/src/changelog.rs
parent3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff)
downloadfparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz
fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip
Deleted vendor folder
Diffstat (limited to 'vendor/rdrand/src/changelog.rs')
-rw-r--r--vendor/rdrand/src/changelog.rs25
1 files changed, 0 insertions, 25 deletions
diff --git a/vendor/rdrand/src/changelog.rs b/vendor/rdrand/src/changelog.rs
deleted file mode 100644
index 503f738..0000000
--- a/vendor/rdrand/src/changelog.rs
+++ /dev/null
@@ -1,25 +0,0 @@
-//! Project changelog
-
-/// ## Breaking changes
-///
-/// Crate gained an enabled-by-default `std` feature. If you relied on rdrand being `core`-able
-/// change your dependency to appear as such:
-///
-/// ```toml
-/// rdrand = { version = "0.4", default-features = false }
-/// ```
-///
-/// This is done so that an advantage of the common feature detection functionality could be
-/// employed by users that are not constrained by `core`. This functionality is faster, caches the
-/// results and is shared between all users of the functionality.
-///
-/// For `core` usage the feature detection has also been improved and will not be done if e.g.
-/// crate is built with `rdrand` instructions enabled globally.
-pub mod r0_4_0 {}
-
-/// Crate now works on stable!
-///
-/// ## Breaking changes
-///
-/// * Updated to `rand_core = ^0.3`.
-pub mod r0_3_0 {}