Expand description
The wasmer.toml
file format.
You’ll typically start by deserializing into a Manifest
and inspecting
its properties.
Re-exports§
pub extern crate serde_cbor;
pub extern crate toml;
Modules§
- rust
- Rust-specific annotations used to interoperate with external tools.
Structs§
- Command
V1 Deprecated - Describes a command for a wasmer module.
- Command
V2 - An executable command.
- File
Command Annotations - Annotations on disk.
- Manifest
- The manifest represents the file used to describe a Wasm package.
- Manifest
Builder - Builder for
Manifest
. - Module
- A file which may be executed by a
Command
. Sometimes also referred to as an “atom”. - Package
- Metadata about the package.
- Package
Builder - Builder for
Package
. - WaiBindings
- WitBindings
Enums§
- Abi
- The ABI is a hint to WebAssembly runtimes about what additional imports to insert and how a module may be run.
- Bindings
- The interface exposed by a
Module
. - Command
- Command
Annotations - Annotations for a command.
- File
Kind - The different formats that
FileCommandAnnotations
can be saved in. - Imports
Error - Errors that may occur when resolving
Bindings
imports. - Manifest
Builder Error - Error type for ManifestBuilder
- Manifest
Error - Errors that may occur while working with a
Manifest
. - Module
Reference - A reference to a module which may or may not come from another package.
- Package
Builder Error - Error type for PackageBuilder
- Validation
Error - Errors that may be returned by
Manifest::validate()
.
Statics§
- MANIFEST_
FILE_ NAME - The default name for the manifest file.