1use structopt::StructOpt; 2 3/// Update all of the dependencies of this project. 4#[derive(Debug, StructOpt)] 5pub struct UpdateSubcommand {} 6 7impl UpdateSubcommand { 8 pub fn run(self) -> anyhow::Result<()> { 9 todo!("The 'update' subcommand") 10 } 11}