Undo pinning of clap

This commit is contained in:
Jonas Platte 2022-06-15 18:33:56 +02:00
parent 34863ca80f
commit 21a03fce92
No known key found for this signature in database
GPG Key ID: AAA7A61F696C3E0C
3 changed files with 1 additions and 3 deletions

View File

@ -8,7 +8,7 @@ publish = false
default = ["isahc", "semver", "toml_edit"]
[dependencies]
clap = { version = "~3.1", features = ["derive"] }
clap = { version = "3.2.4", features = ["derive"] }
isahc = { version = "1.7.0", features = ["json"], optional = true }
semver = { version = "1.0.6", features = ["serde"], optional = true }
serde = { version = "1.0.136", features = ["derive"] }

View File

@ -3,7 +3,6 @@ use clap::Args;
use crate::{cmd, Result};
#[derive(Args)]
#[allow(deprecated)]
pub struct DocTask {
/// Open the browser when the docs are built.
#[clap(long)]

View File

@ -19,7 +19,6 @@ use crate::{cargo::Package, cmd, util::ask_yes_no, GithubConfig, Metadata, Resul
const GITHUB_API_RUMA: &str = "https://api.github.com/repos/ruma/ruma";
#[derive(Args)]
#[allow(deprecated)]
pub struct ReleaseArgs {
/// The crate to release
pub package: String,