#![doc(html_favicon_url = "https://wasmer.io/images/icons/favicon-32x32.png")]
#![doc(html_logo_url = "https://github.com/wasmerio.png?size=200")]
#![deny(
missing_docs,
nonstandard_style,
unused_mut,
unused_unsafe,
unreachable_patterns
)]
#![allow(clippy::bool_comparison, clippy::match_like_matches_macro)]
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
mod commands;
mod common;
mod config;
#[macro_use]
mod error;
mod c_gen;
mod logging;
mod opts;
mod store;
mod types;
mod utils;
mod edge_config;
const VERSION: &str = env!("CARGO_PKG_VERSION");
pub fn run_cli() {
self::commands::WasmerCmd::run();
}