depup-cli 0.1.0

Check dependency versions across Maven and npm ecosystems
1
2
3
4
5
6
7
8
9
10
11
12
//! Stub for the `audit` subcommand (not yet implemented).

use anyhow::Result;
use clap::ArgMatches;

use super::not_implemented;

/// Placeholder for future dependency audit functionality.
#[allow(clippy::unnecessary_wraps)]
pub fn audit(matches: &ArgMatches) -> Result<()> {
    not_implemented("audit", matches)
}