forest-filecoin 0.34.0

Rust Filecoin implementation.
Documentation
// Copyright 2019-2026 ChainSafe Systems
// SPDX-License-Identifier: Apache-2.0, MIT

mod helpers;
mod mpool;
mod wallet;

/// Integration tests
#[derive(Debug, clap::Subcommand)]
pub enum TestsCommand {
    Wallet(wallet::WalletTestCommand),
    Mpool(mpool::MpoolTestCommand),
}

impl TestsCommand {
    pub async fn run(self) -> anyhow::Result<()> {
        match self {
            Self::Wallet(cmd) => cmd.run().await,
            Self::Mpool(cmd) => cmd.run().await,
        }
    }
}