bestool 1.5.1

BES Deployment tooling
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[global_allocator]
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;

fn main() -> miette::Result<()> {
	tokio::runtime::Builder::new_multi_thread()
		.enable_all()
		.build()
		.unwrap()
		.block_on(async {
			let (args, _guard) = bestool::args()?;
			bestool::run(args).await
		})
}