forest-filecoin 0.33.8

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

mod calibnet;

/// Integration tests
#[derive(Debug, clap::Subcommand)]
pub enum TestsCommand {
    #[command(subcommand)]
    Calibnet(calibnet::CalibnetTestsCommand),
}

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