1#![doc(html_favicon_url = "https://wasmer.io/images/icons/favicon-32x32.png")]
4#![doc(html_logo_url = "https://github.com/wasmerio.png?size=200")]
5#![deny(
6 missing_docs,
7 nonstandard_style,
9 unused_mut,
10 unused_unsafe,
12 unreachable_patterns
13)]
14#![allow(clippy::bool_comparison, clippy::match_like_matches_macro)]
16#![cfg_attr(docsrs, feature(doc_cfg))]
17
18mod commands;
22mod common;
23mod config;
24#[macro_use]
25mod error;
26mod backend;
27mod logging;
28mod opts;
29mod types;
30mod utils;
31
32mod edge_config;
33
34const VERSION: &str = env!("CARGO_PKG_VERSION");
36
37pub fn run_cli() {
39 self::commands::WasmerCmd::run();
40}