wasmer_compiler_cli/
lib.rs

1//! The Wasmer binary lib
2
3#![deny(
4    missing_docs,
5    dead_code,
6    nonstandard_style,
7    unused_mut,
8    unused_variables,
9    unused_unsafe,
10    unreachable_patterns
11)]
12#![doc(html_favicon_url = "https://wasmer.io/images/icons/favicon-32x32.png")]
13#![doc(html_logo_url = "https://github.com/wasmerio.png?size=200")]
14#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
15
16#[macro_use]
17extern crate anyhow;
18
19pub mod commands;
20pub mod common;
21#[macro_use]
22pub mod error;
23pub mod cli;
24#[cfg(feature = "debug")]
25pub mod logging;
26pub mod store;
27pub mod utils;
28
29/// Version number of this crate.
30pub const VERSION: &str = env!("CARGO_PKG_VERSION");