normal.rs 293 B

1234567891011
  1. // Don't test on custom wasm32-unknown-unknown
  2. #![cfg(not(all(
  3. target_arch = "wasm32",
  4. target_os = "unknown",
  5. feature = "custom",
  6. not(feature = "js")
  7. )))]
  8. // Use the normal getrandom implementation on this architecture.
  9. use getrandom::getrandom as getrandom_impl;
  10. mod common;