zenops-safe-relative-path 0.4.0

Relative path type that statically prevents `..` traversal.
Documentation
1
2
3
4
5
#[derive(Debug, thiserror::Error, PartialEq)]
pub enum Error {
    #[error("The specified relative path {0:?} goes outside of the parent directory")]
    PathGoesOutsideParent(relative_path::RelativePathBuf),
}