1 2 3 4 5 6 7 8 9 10 11 12
// Use Jemalloc for main binary #[cfg(feature = "jemalloc")] #[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 }