]> git.proxmox.com Git - cargo.git/commit - src/bin/cargo/commands/rustdoc.rs
refactor: Resolve Arg::multiple deprecation
authorEd Page <eopage@gmail.com>
Thu, 6 Jan 2022 15:13:24 +0000 (09:13 -0600)
committerEd Page <eopage@gmail.com>
Thu, 6 Jan 2022 15:18:14 +0000 (09:18 -0600)
commit92fa72d48023602952182d9e6e6cc253d74ddc94
treea2d487cb681c72d65fccbbb53d9736754770997b
parent6e08a30e268ac0e43b44d683b13752b8333b2d3f
refactor: Resolve Arg::multiple deprecation

Note: `cargo vendor --sync` did not use `multi_opt` and so it has both
multiple occurrences **and** multiple values.  If we want to deprecate
this, we'll need `unstable-grouped` to be stablized (or pin our clap
version) and ensure each group has only 1 value.
src/bin/cargo/cli.rs
src/bin/cargo/commands/bench.rs
src/bin/cargo/commands/install.rs
src/bin/cargo/commands/run.rs
src/bin/cargo/commands/rustc.rs
src/bin/cargo/commands/rustdoc.rs
src/bin/cargo/commands/search.rs
src/bin/cargo/commands/test.rs
src/bin/cargo/commands/uninstall.rs
src/bin/cargo/commands/vendor.rs
src/cargo/util/command_prelude.rs