File tree 2 files changed +15
-0
lines changed
2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,14 @@ crate features, WASM support and Custom RNGs see the
54
54
55
55
This crate requires Rust 1.36.0 or later.
56
56
57
+ ## Platform Support
58
+
59
+ This crate generally supports the same operating system and platform versions that the Rust standard library does.
60
+ Additional targets may be supported using pluggable custom implementations.
61
+
62
+ This means that as Rust drops support for old versions of operating systems (such as old Linux kernel versions, Android API levels, etc)
63
+ in stable releases, ` getrandom ` may create new patch releases (` 0.N.x ` ) that remove support for outdated platform versions.
64
+
57
65
# License
58
66
59
67
The ` getrandom ` library is distributed under either of
Original file line number Diff line number Diff line change 106
106
//! ```
107
107
//! This crate will then use the provided `webcrypto` implementation.
108
108
//!
109
+ //! ### Platform Support
110
+ //! This crate generally supports the same operating system and platform versions that the Rust standard library does.
111
+ //! Additional targets may be supported using pluggable custom implementations.
112
+ //!
113
+ //! This means that as Rust drops support for old versions of operating systems (such as old Linux kernel versions, Android API levels, etc)
114
+ //! in stable releases, `getrandom` may create new patch releases (`0.N.x`) that remove support for outdated platform versions.
115
+ //!
109
116
//! ### Custom implementations
110
117
//!
111
118
//! The [`register_custom_getrandom!`] macro allows a user to mark their own
You can’t perform that action at this time.
0 commit comments