cargo-tangle 0.3.3

A command-line tool to create and deploy blueprints on Tangle Network
Documentation
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),
}