cargo-tangle 0.5.0-alpha.4

A command-line tool to create and deploy blueprints on Tangle Network
Documentation
1
2
3
4
5
6
7
8
9
pub mod spawn;

use clap::Subcommand;

#[derive(Subcommand, Debug)]
pub enum DebugCommands {
    /// Launch a local Anvil stack and run the blueprint against it.
    Spawn(spawn::SpawnArgs),
}