recall_frc42_dispatch 0.1.1

Filecoin FRC-0042 calling convention/dispatch support library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2022-2024 Protocol Labs
// SPDX-License-Identifier: MIT
//
// Forked from https://github.com/filecoin-project/actors-utils with assumed MIT license
// as per Cargo.toml: https://github.com/filecoin-project/actors-utils/blob/7628cd8d39dafcc6035f28e350cdb0cccbea5ab4/frc42_dispatch/Cargo.toml#L5
//
// License headers added post-fork.
pub use recall_frc42_hasher as hasher;
pub use recall_frc42_hasher::hash;
pub use recall_frc42_macros::method_hash;

pub mod match_method;
pub mod message;

#[cfg(test)]
mod tests {}