diff --git a/crates/core/src/lib.rs b/crates/core/src/lib.rs index 0236827e..e7ded7ac 100644 --- a/crates/core/src/lib.rs +++ b/crates/core/src/lib.rs @@ -115,6 +115,7 @@ pub(crate) mod progress; /// Structs which are saved in JSON or binary format in the repository pub mod repofile; pub(crate) mod repository; +/// Utils for using unix paths pub mod util; /// Virtual File System support - allows to act on the repository like on a file system pub mod vfs; diff --git a/crates/core/src/util.rs b/crates/core/src/util.rs index 43f19ab2..a5e8f1f2 100644 --- a/crates/core/src/util.rs +++ b/crates/core/src/util.rs @@ -1,4 +1,4 @@ -/// Utilities for handling paths on rustic_core +/// Utilities for handling paths on ``rustic_core`` use globset::GlobMatcher; use serde::{Serialize, Serializer}; use typed_path::{UnixPath, UnixPathBuf};