forest-filecoin 0.33.8

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

mod helpers;
mod mpool;
mod wallet;

/// Calibnet integration tests
#[derive(Debug, clap::Subcommand)]
pub enum CalibnetTestsCommand {
    Wallet(wallet::CalibnetWalletTestCommand),
    Mpool(mpool::CalibnetMpoolTestCommand),
}

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