gitextract_26_m99a6/ ├── .cargo/ │ └── config.toml ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── build.yml │ ├── nopanic.yaml │ ├── release.yml │ ├── tests.yml │ └── workspace.yml ├── .gitignore ├── .typos.toml ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── SECURITY.md ├── benches/ │ └── buffer.rs ├── build.rs ├── custom_impl_test/ │ ├── Cargo.toml │ └── src/ │ └── lib.rs ├── nopanic_check/ │ ├── Cargo.toml │ └── src/ │ └── lib.rs ├── src/ │ ├── backends/ │ │ ├── apple_other.rs │ │ ├── custom.rs │ │ ├── efi_rng.rs │ │ ├── esp_idf.rs │ │ ├── extern_impl.rs │ │ ├── fuchsia.rs │ │ ├── getentropy.rs │ │ ├── getrandom.rs │ │ ├── hermit.rs │ │ ├── linux_android_with_fallback.rs │ │ ├── linux_raw.rs │ │ ├── netbsd.rs │ │ ├── rdrand.rs │ │ ├── rndr.rs │ │ ├── solaris.rs │ │ ├── solid.rs │ │ ├── unsupported.rs │ │ ├── use_file.rs │ │ ├── vxworks.rs │ │ ├── wasi_p1.rs │ │ ├── wasi_p2_3.rs │ │ ├── wasm_js.rs │ │ ├── windows.rs │ │ └── windows_legacy.rs │ ├── backends.rs │ ├── error.rs │ ├── error_std_impls.rs │ ├── lib.rs │ ├── sys_rng.rs │ ├── util.rs │ └── utils/ │ ├── get_errno.rs │ ├── lazy_bool.rs │ ├── lazy_ptr.rs │ ├── sanitizer.rs │ └── sys_fill_exact.rs └── tests/ ├── mod.rs └── sys_rng.rs