1 2 3 4 5 6 7 8 9 10 11 12
//! Stub for the `update` subcommand (not yet implemented). use anyhow::Result; use clap::ArgMatches; use super::not_implemented; /// Placeholder for future dependency update functionality. #[allow(clippy::unnecessary_wraps)] pub fn update(matches: &ArgMatches) -> Result<()> { not_implemented("update", matches) }