wasmer_toml/rust.rs
1//! Rust-specific annotations used to interoperate with external tools.
2
3use crate::{Abi, Bindings};
4use std::collections::HashMap;
5use std::path::PathBuf;
6
7/// The annotation used by `cargo wapm` when it parses the
8/// `[package.metadata.wapm]` table in your `Cargo.toml`.
9#[derive(Debug, Clone, PartialEq, Eq, serde::Serialize, serde::Deserialize)]
10#[serde(rename_all = "kebab-case")]
11pub struct Wasmer {
12 /// The namespace this package should be published under.
13 pub namespace: String,
14 /// The name the package should be published under, if it differs from the
15 /// crate name.
16 pub package: Option<String>,
17 /// Extra flags that should be passed to the `wasmer` CLI.
18 pub wasmer_extra_flags: Option<String>,
19 /// The ABI to use when adding the compiled crate to the package.
20 pub abi: Abi,
21 /// Filesystem mappings.
22 #[serde(default, skip_serializing_if = "Option::is_none")]
23 pub fs: Option<HashMap<String, PathBuf>>,
24 /// Binding declarations for the crate.
25 pub bindings: Option<Bindings>,
26}