infinity-bridge-wire 0.1.1

Wire protocol types for infinity-bridge — shared between WASM and host crates
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![cfg_attr(not(feature = "std"), no_std)]

extern crate alloc;

mod error;
mod msg;

pub use error::{BridgeError, ErrorKind};
pub use msg::{AckPayload, CmdPayload, EventPayload, HelloPayload, WireMsg};

pub const PROTOCOL_VERSION: u32 = 1;