txtar 1.0.0

A Rust implementation of the txtar Go package
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::io;

use thiserror::Error;

#[derive(Error, Debug)]
pub enum MaterializeError {
    #[error("{0}")]
    Io(#[from] io::Error),
    #[error("{0}: outside parent directory")]
    DirEscape(String),
}