Skip to content

Commit 2369f76

Browse files
committed
feat(api): expose aware and ignorant
1 parent 1c201e3 commit 2369f76

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

src/hardlink.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
mod ignorant;
2-
pub use ignorant::HardlinkIgnorant;
3-
41
// `RecordHardlink` is POSIX-exclusive, because whilst Windows does have `MetadataExt::number_of_links`, it requires Nightly.
52
#[cfg(unix)]
6-
mod aware;
3+
pub mod aware;
74
#[cfg(unix)]
85
pub use aware::HardlinkAware;
96

107
pub mod hardlink_list;
8+
pub mod ignorant;
119
pub mod link_path_list;
1210
pub mod record;
1311

1412
pub use hardlink_list::{HardlinkList, HardlinkListReflection};
13+
pub use ignorant::HardlinkIgnorant;
1514
pub use link_path_list::{LinkPathList, LinkPathListReflection};
1615
pub use record::{RecordHardlinks, RecordHardlinksArgument};

0 commit comments

Comments
 (0)