1 //! The Wasmtime command line interface (CLI) crate. 2 //! 3 //! This crate implements the Wasmtime command line tools. 4 5 #![deny(missing_docs)] 6 #![expect(clippy::allow_attributes_without_reason, reason = "crate not migrated")] 7 8 pub mod commands; 9 10 #[cfg(feature = "run")] 11 pub(crate) mod common; 12