check-updates-cli 0.3.1

CLI for checking for updates to your Cargo dependencies
Documentation
1
2
3
4
5
6
7
use check_updates_cli::cli::Args;
use clap::Parser;

#[tokio::main]
async fn main() {
    check_updates_cli::run(Args::parse()).await;
}