forc-client 0.71.3

A `forc` plugin for interacting with a Fuel node.
1
2
3
4
5
6
7
8
9
10
11
12
use clap::Parser;
use forc_tracing::{init_tracing_subscriber, println_error};

#[tokio::main]
async fn main() {
    let _ = init_tracing_subscriber(Default::default());
    let command = forc_client::cmd::Deploy::parse();
    if let Err(err) = forc_client::op::deploy(command).await {
        println_error(&format!("{err}"));
        std::process::exit(1);
    }
}