infinity_bridge_wire/
lib.rs1#![cfg_attr(not(feature = "std"), no_std)]
2
3extern crate alloc;
4
5mod error;
6mod msg;
7
8pub use error::{BridgeError, ErrorKind};
9pub use msg::{AckPayload, CmdPayload, EventPayload, HelloPayload, WireMsg};
10
11pub const PROTOCOL_VERSION: u32 = 1;