[go: up one dir, main page]

fuel-core-bin 0.31.0

Fuel client binary.
1
2
3
4
5
6
7
8
9
10
// Use Jemalloc for main binary
#[global_allocator]
static GLOBAL: tikv_jemallocator::Jemalloc = tikv_jemallocator::Jemalloc;

use fuel_core_bin::cli;

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