1 | #![forbid(unsafe_op_in_unsafe_fn)] |
---|---|
2 | |
3 | cfg_if::cfg_if! { |
4 | if #[cfg(any( |
5 | target_os = "windows", |
6 | target_os = "uefi", |
7 | ))] { |
8 | mod wtf8; |
9 | pub use wtf8::{Buf, Slice}; |
10 | } else { |
11 | mod bytes; |
12 | pub use bytes::{Buf, Slice}; |
13 | } |
14 | } |
15 |