Skip to main content

forest/shim/
mod.rs

1// Copyright 2019-2026 ChainSafe Systems
2// SPDX-License-Identifier: Apache-2.0, MIT
3
4pub mod actors;
5pub mod address;
6pub mod bigint;
7pub mod clock;
8pub mod crypto;
9pub mod deal;
10pub mod econ;
11pub mod error;
12pub mod executor;
13pub mod externs;
14pub mod gas;
15pub mod kernel;
16pub mod machine;
17pub mod message;
18pub mod piece;
19pub mod policy;
20pub mod randomness;
21pub mod runtime;
22pub mod sector;
23pub mod state_tree;
24pub mod state_tree_v0;
25pub mod trace;
26pub mod version;
27
28pub mod fvm_shared_latest {
29    // If `#[doc(inline)]`, we steal these docs from an external crate.
30    // But they contain dead links, which means our dead link checker (lychee)
31    // will complain.
32    #[doc(no_inline)]
33    pub use fvm_shared4::*;
34}
35pub mod fvm_latest {
36    pub use fvm4::*;
37}
38
39pub type MethodNum = fvm_shared_latest::MethodNum;