Skip to content

Commit d6e8945

Browse files
authored
Merge pull request #959 from epage/upgrade
chore: Upgrade dependencies
2 parents 96a3879 + eee883f commit d6e8945

55 files changed

Lines changed: 708 additions & 535 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Cargo.lock

Lines changed: 645 additions & 516 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ required-features = ["set-version"]
5757

5858
[dependencies]
5959
concolor-control = { version = "0.0.7", default-features = false }
60-
cargo_metadata = "0.21.0"
60+
cargo_metadata = "0.23.1"
6161
# Use this with default-features set to "true" (implicitly) so that reqwest,
6262
# a transitive dependency, is compiled with support for both webpki
6363
# certificates AND native certificates. We want support for both to be
@@ -69,27 +69,26 @@ anyhow = "1.0"
6969
home = "0.5.12"
7070
serde = "1.0.228"
7171
serde_derive = "1.0.228"
72-
clap = { version = "4.5.51", features = ["derive", "wrap_help"], optional = true }
73-
clap-cargo = "0.16.0"
72+
clap = { version = "4.6.1", features = ["derive", "wrap_help"], optional = true }
73+
clap-cargo = "0.18.3"
7474
termcolor = "1.4.1"
75-
toml = "0.9.8"
76-
toml_edit = "0.23.7"
75+
toml = "1.1.2"
76+
toml_edit = "0.25.11"
7777
indexmap = "2"
78-
url = "2.5.7"
78+
url = "2.5.8"
7979
pathdiff = "0.2"
80-
env_logger = "0.11.8"
80+
env_logger = "0.11.10"
8181
clap-verbosity-flag = "3.0.4"
82-
log = "0.4.28"
82+
log = "0.4.29"
8383

8484
[dependencies.semver]
8585
features = ["serde"]
86-
version = "1.0.27"
86+
version = "1.0.28"
8787

8888
[dev-dependencies]
89-
trycmd = "0.15.10"
90-
snapbox = { version = "0.6.23", features = ["cmd", "path"] }
91-
cargo-test-macro = "0.4.6"
92-
cargo-test-support = "0.7.5"
89+
trycmd = "1.2.0"
90+
snapbox = { version = "0.6.24", features = ["cmd", "path"] }
91+
cargo-test-support = "0.10.0"
9392

9493
[profile.release]
9594
panic = "abort"

tests/cargo-set-version/downgrade_error/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use cargo_test_support::Project;
22
use cargo_test_support::compare::assert_ui;
33
use cargo_test_support::file;
4+
use cargo_test_support::prelude::*;
45

56
use crate::CargoCommand;
67
use crate::init_registry;

tests/cargo-set-version/dry_run/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use cargo_test_support::Project;
22
use cargo_test_support::compare::assert_ui;
33
use cargo_test_support::file;
4+
use cargo_test_support::prelude::*;
45

56
use crate::CargoCommand;
67
use crate::init_registry;

tests/cargo-set-version/ignore_dependent/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use cargo_test_support::Project;
22
use cargo_test_support::compare::assert_ui;
33
use cargo_test_support::file;
4+
use cargo_test_support::prelude::*;
45

56
use crate::CargoCommand;
67
use crate::init_registry;

tests/cargo-set-version/main.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
#![warn(clippy::needless_borrow)]
33
#![warn(clippy::redundant_clone)]
44

5-
#[macro_use]
6-
extern crate cargo_test_macro;
7-
85
mod downgrade_error;
96
mod dry_run;
107
mod ignore_dependent;

tests/cargo-set-version/relative_absolute_conflict/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use cargo_test_support::Project;
22
use cargo_test_support::compare::assert_ui;
33
use cargo_test_support::file;
4+
use cargo_test_support::prelude::*;
45

56
use crate::CargoCommand;
67
use crate::init_registry;

tests/cargo-set-version/set_absolute_version/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use cargo_test_support::Project;
22
use cargo_test_support::compare::assert_ui;
33
use cargo_test_support::file;
4+
use cargo_test_support::prelude::*;
45

56
use crate::CargoCommand;
67
use crate::init_registry;

tests/cargo-set-version/set_absolute_workspace_version/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use cargo_test_support::Project;
22
use cargo_test_support::compare::assert_ui;
33
use cargo_test_support::file;
4+
use cargo_test_support::prelude::*;
45

56
use crate::CargoCommand;
67
use crate::init_registry;

tests/cargo-set-version/set_relative_version/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use cargo_test_support::Project;
22
use cargo_test_support::compare::assert_ui;
33
use cargo_test_support::file;
4+
use cargo_test_support::prelude::*;
45

56
use crate::CargoCommand;
67
use crate::init_registry;

0 commit comments

Comments
 (0)