Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/src/lib.rs
1685 views
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
#[cfg(feature = "run")]
10
pub(crate) mod common;
11
12