//! Entry-point for the `lha-exec` binary.
//!
//! When this CLI is invoked normally, it parses the standard `lha-exec` CLI
//! options and launches the non-interactive LHA agent. However, if it is
//! invoked with arg0 as `lha-linux-sandbox`, we instead treat the invocation
//! as a request to run the logic for the standalone `lha-linux-sandbox`
//! executable (i.e., parse any -s args and then run a *sandboxed* command under
//! Landlock + seccomp.
//!
//! This allows us to ship a completely separate set of functionality as part
//! of the `lha-exec` binary.
use cratearg0_dispatch_or_else;
use crateparse_with_config_overrides;
use craterun_main;