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
14
//! HTTP clients for upstream services.
//!
//! Each module here is a thin async client around `reqwest` (with an
//! ETag-aware cache layer). See ADR-0005 for the federation policy.

pub mod client;
pub mod deps_dev;
pub mod github;
pub mod osv;
pub mod scorecard;

pub use deps_dev::Client as DepsDevClient;
pub use osv::Client as OsvClient;
pub use scorecard::Client as ScorecardClient;