xref: /wasmtime-44.0.1/src/lib.rs (revision ef70686b)
1 //! The Wasmtime command line interface (CLI) crate.
2 //!
3 //! This crate implements the Wasmtime command line tools.
4 
5 #![deny(missing_docs)]
6 
7 pub mod commands;
8 
9 pub(crate) mod common;
10 
11 #[cfg(feature = "old-cli")]
12 pub mod old_cli;
13