cargo_tangle/create/
error.rs

1
2
3
4
5
6
7
8
9
#[derive(thiserror::Error, Debug)]
pub enum Error {
    #[error("Failed to generate blueprint: {0}")]
    GenerationFailed(anyhow::Error),
    #[error("Failed to initialize submodules, see .gitmodules to add them manually")]
    SubmoduleInit,
    #[error("{0}")]
    Io(#[from] std::io::Error),
}