Skip to content

Commit b7dcd3d

Browse files
committed
Remove Bitrig support
1 parent 479d036 commit b7dcd3d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/lib.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
//! | macOS | [`getentropy()`][19] if available, otherise [`/dev/random`][20] (identical to `/dev/urandom`)
1818
//! | iOS | [`SecRandomCopyBytes`][4]
1919
//! | FreeBSD | [`kern.arandom`][5]
20-
//! | OpenBSD, Bitrig | [`getentropy`][6]
20+
//! | OpenBSD | [`getentropy`][6]
2121
//! | NetBSD | [`/dev/urandom`][7] after reading from `/dev/random` once
2222
//! | Dragonfly BSD | [`/dev/random`][8]
2323
//! | Solaris, illumos | [`getrandom`][9] system call if available, otherwise [`/dev/random`][10]
@@ -176,8 +176,6 @@ mod use_file;
176176
cfg_if! {
177177
if #[cfg(target_os = "android")] {
178178
#[path = "linux_android.rs"] mod imp;
179-
} else if #[cfg(target_os = "bitrig")] {
180-
#[path = "openbsd_bitrig.rs"] mod imp;
181179
} else if #[cfg(target_os = "cloudabi")] {
182180
#[path = "cloudabi.rs"] mod imp;
183181
} else if #[cfg(target_os = "dragonfly")] {

0 commit comments

Comments
 (0)