Merge branch 'odin' of codeberg.org:jeang3nie/hpk into odin

This commit is contained in:
Nathan Fisher 2023-07-08 18:42:27 -04:00
commit 150b728172
2 changed files with 7 additions and 1 deletions

View File

@ -8,10 +8,16 @@ use std::{
fs::{self, Metadata},
io,
ops::Deref,
os::{linux::fs::MetadataExt, unix::fs::FileTypeExt},
os::unix::fs::FileTypeExt,
path::PathBuf,
};
#[cfg(target_os = "linux")]
use std::os::linux::fs::MetadataExt;
#[cfg(target_os = "freebsd")]
use std::os::freebsd::fs::MetadataExt;
#[repr(u8)]
pub enum FileType {
Normal = 0x30,

Binary file not shown.