File: normal.rs

package info (click to toggle)
rust-getrandom 0.2.15-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 324 kB
  • sloc: makefile: 4
file content (11 lines) | stat: -rw-r--r-- 293 bytes parent folder | download | duplicates (41)
1
2
3
4
5
6
7
8
9
10
11
// Don't test on custom wasm32-unknown-unknown
#![cfg(not(all(
    target_arch = "wasm32",
    target_os = "unknown",
    feature = "custom",
    not(feature = "js")
)))]

// Use the normal getrandom implementation on this architecture.
use getrandom::getrandom as getrandom_impl;
mod common;