jade 0.0.14

Jade framework for building JAM services
Documentation
//! Re-export the prelude types

pub use codec;
pub use service::{OpaqueHash, service::WorkPackage};

#[cfg(feature = "std")]
pub use std::{collections::BTreeMap, format, string::String, vec, vec::Vec};

#[cfg(not(feature = "std"))]
pub use alloc::{collections::BTreeMap, format, string::String, vec, vec::Vec};

/// Type to represent the index of a compute core.
pub type CoreIndex = u16;

/// Type to represent the authorizer configuration.
pub type AuthConfig = Vec<u8>;

/// Type to represent the authorizer trace.
pub type AuthTrace = Vec<u8>;