homestar_invocation/
consts.rs

1//! Exported global constants.
2
3/// SemVer-formatted version of the UCAN Invocation Specification.
4pub const INVOCATION_VERSION: &str = "0.2.0";
5/// DagCbor codec.
6pub const DAG_CBOR: u64 = 0x71;
7/// 4GiB maximum memory for Wasm.
8pub const WASM_MAX_MEMORY: u64 = byte_unit::n_gib_bytes!(4);