We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e35077 commit 43a0d7bCopy full SHA for 43a0d7b
2 files changed
Cargo.toml
@@ -100,6 +100,7 @@ check-cfg = [
100
'cfg(getrandom_test_linux_without_fallback)',
101
'cfg(getrandom_test_netbsd_fallback)',
102
'cfg(target_os, values("cygwin"))', # TODO(MSRV 1.86): Remove this.
103
+ 'cfg(target_os, values("motor"))',
104
]
105
106
[lints.rust]
src/backends.rs
@@ -149,6 +149,9 @@ cfg_if! {
149
} else if #[cfg(target_os = "hermit")] {
150
mod hermit;
151
pub use hermit::*;
152
+ } else if #[cfg(all(target_arch = "x86_64", target_os = "motor"))] {
153
+ mod rdrand;
154
+ pub use rdrand::*;
155
} else if #[cfg(target_os = "vxworks")] {
156
mod vxworks;
157
pub use vxworks::*;
0 commit comments