afterburner 0.1.2

Afterburner - JS ~> WASM Sandboxed Execution VM
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-License-Identifier: BUSL-1.1
// Copyright (c) 2026 vertexclique
// Licensed under the Business Source License 1.1.
// Change Date: 4 years after this version's release. Change License: Apache-2.0.

//! `burn` - the Afterburner command-line runtime.
//!
//! Thin entrypoint. All subcommand logic lives in [`afterburner::cli`].

fn main() {
    if let Err(e) = afterburner::cli::run() {
        afterburner::cli::report_error(&e);
        std::process::exit(1);
    }
}