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 consensus;
9pub mod crypto;
10pub mod deal;
11pub mod econ;
12pub mod error;
13pub mod executor;
14pub mod externs;
15pub mod gas;
16pub mod kernel;
17pub mod machine;
18pub mod message;
19pub mod percent;
20pub mod piece;
21pub mod policy;
22pub mod randomness;
23pub mod runtime;
24pub mod sector;
25pub mod state_tree;
26pub mod state_tree_v0;
27pub mod trace;
28pub mod version;
29
30pub mod fvm_shared_latest {
31    // If `#[doc(inline)]`, we steal these docs from an external crate.
32    // But they contain dead links, which means our dead link checker (lychee)
33    // will complain.
34    #[doc(no_inline)]
35    pub use fvm_shared4::*;
36}
37pub mod fvm_latest {
38    pub use fvm4::*;
39}
40
41pub type MethodNum = fvm_shared_latest::MethodNum;