interstice-abi 0.5.0

WASM ABI types and host-call interfaces for the Interstice runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::Version;
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct ModuleDependency {
    pub module_name: String,
    pub version: Version,
}

#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct NodeDependency {
    pub name: String,
    pub address: String,
}