repo-trust 0.1.1

A command-line tool that tells you whether an open-source repository deserves your trust — beyond the star count.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! `explain` — print full evidence walkthrough.

use clap::Args;

#[derive(Debug, Args)]
pub struct ExplainArgs {
    pub repo: String,
}

pub async fn execute(args: ExplainArgs) -> anyhow::Result<u8> {
    tracing::info!(repo = %args.repo, "explain starting");
    anyhow::bail!("explain: not yet implemented")
}