Update to clap 3.* (#4082)

* Update to clap 3.0

This commit migrates all CLI commands internally used in this project
from structopt/clap2 to clap 3. The intent here is to ensure that we're
using maintained versions of the dependencies as structopt and clap 2
are less maintained nowadays. Most transitions were pretty
straightforward and mostly dealing with structopt/clap3 differences.

* Fix a number of `cargo deny` errors

This commit fixes a few errors around duplicate dependencies which
arose from the prior update to clap3. This also uses a new feature in
`deny.toml`, `skip-tree`, which allows having a bit more targeted
ignores for skips of duplicate version checks. This showed a few more
locations in Wasmtime itself where we could update some dependencies.
This commit is contained in:
Alex Crichton
2022-04-28 12:47:12 -05:00
committed by GitHub
parent 871a9d93f2
commit 5fe06f7345
30 changed files with 295 additions and 325 deletions

View File

@@ -12,9 +12,9 @@
)
)]
use clap::Parser;
use cranelift_codegen::dbg::LOG_FILENAME_PREFIX;
use std::{option::Option, path::PathBuf};
use structopt::StructOpt;
use std::path::PathBuf;
mod bugpoint;
mod cat;
@@ -40,7 +40,7 @@ fn handle_debug_flag(debug: bool) {
}
/// Cranelift code generator utility.
#[derive(StructOpt)]
#[derive(Parser)]
enum Commands {
Test(TestOptions),
Run(run::Options),
@@ -63,58 +63,57 @@ enum Commands {
}
/// Run Cranelift tests
#[derive(StructOpt)]
#[derive(Parser)]
struct TestOptions {
/// Be more verbose
#[structopt(short = "v", long = "verbose")]
#[clap(short, long)]
verbose: bool,
/// Print pass timing report for test
#[structopt(short = "T")]
#[clap(short = 'T')]
time_passes: bool,
/// Enable debug output on stderr/stdout
#[structopt(short = "d")]
#[clap(short = 'd')]
debug: bool,
/// Specify an input file to be used. Use '-' for stdin.
#[structopt(required(true), parse(from_os_str))]
#[clap(required = true)]
files: Vec<PathBuf>,
}
/// Run specified pass(es) on an input file.
#[derive(StructOpt)]
#[derive(Parser)]
struct PassOptions {
/// Be more verbose
#[structopt(short = "v", long = "verbose")]
#[clap(short, long)]
verbose: bool,
/// Print pass timing report for test
#[structopt(short = "T")]
#[clap(short = 'T')]
time_passes: bool,
/// Enable debug output on stderr/stdout
#[structopt(short = "d")]
#[clap(short)]
debug: bool,
/// Specify an input file to be used. Use '-' for stdin.
#[structopt(parse(from_os_str))]
file: PathBuf,
/// Specify the target architecture.
target: String,
/// Specify pass(es) to be run on the input file
#[structopt(required(true))]
#[clap(required = true)]
passes: Vec<String>,
}
/// (Compiled without support for this subcommand)
#[derive(StructOpt)]
#[derive(Parser)]
struct CompiledWithoutSupportOptions {}
fn main() -> anyhow::Result<()> {
match Commands::from_args() {
match Commands::parse() {
Commands::Cat(c) => cat::run(&c)?,
Commands::Run(r) => run::run(&r)?,
Commands::Interpret(i) => interpret::run(&i)?,