[go: up one dir, main page]

fuel-core-bin 0.19.1

Fuel client binary.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![deny(unused_crate_dependencies)]

// Use Jemalloc for main binary
#[global_allocator]
static GLOBAL: tikv_jemallocator::Jemalloc = tikv_jemallocator::Jemalloc;

use fuel_core::service::FuelService;

mod cli;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    cli::run_cli().await
}