Skip to content

Commit a2615cf

Browse files
build(deps): bump the dependencies group across 1 directory with 6 updates (#4027)
Bumps the dependencies group with 6 updates in the /rust directory: | Package | From | To | | --- | --- | --- | | [indexmap](https://github.com/indexmap-rs/indexmap) | `2.13.1` | `2.14.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.51.0` | `1.52.1` | | [axum](https://github.com/tokio-rs/axum) | `0.8.8` | `0.8.9` | | [clap](https://github.com/clap-rs/clap) | `4.6.0` | `4.6.1` | | [libc](https://github.com/rust-lang/libc) | `0.2.184` | `0.2.185` | | [rayon](https://github.com/rayon-rs/rayon) | `1.11.0` | `1.12.0` | Updates `indexmap` from 2.13.1 to 2.14.0 - [Changelog](https://github.com/indexmap-rs/indexmap/blob/main/RELEASES.md) - [Commits](indexmap-rs/indexmap@2.13.1...2.14.0) Updates `tokio` from 1.51.0 to 1.52.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](tokio-rs/tokio@tokio-1.51.0...tokio-1.52.1) Updates `axum` from 0.8.8 to 0.8.9 - [Release notes](https://github.com/tokio-rs/axum/releases) - [Changelog](https://github.com/tokio-rs/axum/blob/main/CHANGELOG.md) - [Commits](tokio-rs/axum@axum-v0.8.8...axum-v0.8.9) Updates `clap` from 4.6.0 to 4.6.1 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](clap-rs/clap@clap_complete-v4.6.0...clap_complete-v4.6.1) Updates `libc` from 0.2.184 to 0.2.185 - [Release notes](https://github.com/rust-lang/libc/releases) - [Changelog](https://github.com/rust-lang/libc/blob/0.2.185/CHANGELOG.md) - [Commits](rust-lang/libc@0.2.184...0.2.185) Updates `rayon` from 1.11.0 to 1.12.0 - [Changelog](https://github.com/rayon-rs/rayon/blob/main/RELEASES.md) - [Commits](rayon-rs/rayon@rayon-core-v1.11.0...rayon-core-v1.12.0) --- updated-dependencies: - dependency-name: indexmap dependency-version: 2.14.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-version: 1.52.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: axum dependency-version: 0.8.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-version: 4.6.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: libc dependency-version: 0.2.185 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rayon dependency-version: 1.12.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 8ac9933 commit a2615cf

5 files changed

Lines changed: 27 additions & 27 deletions

File tree

rust/Cargo.lock

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

rust/core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ edition = "2021"
66
[dependencies]
77
anyhow = "^1.0.102"
88
as-any = "^0.3.2"
9-
indexmap = { version = "^2.13.1", features = ["serde"] }
9+
indexmap = { version = "^2.14.0", features = ["serde"] }
1010
serde = { version = "^1.0.219", features = ["derive"] }
11-
tokio = "1.51.0"
11+
tokio = "1.52.1"
1212

1313
[dev-dependencies]
1414
serial_test = "^3.4.0"

rust/echo/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ test = ["guerrilla", "once_cell", "toolshed-test"]
1313
anyhow = "^1.0.102"
1414
as-any = "^0.3.2"
1515
async-trait = "^0.1.88"
16-
axum = { version = "=0.8.8", features = ["macros"] }
16+
axum = { version = "=0.8.9", features = ["macros"] }
1717
axum-core = "^0.5.6"
1818
axum-server = { version = "^0.8.0", features = ["tls-rustls"] }
1919
bytes = "=1.11.1"
20-
clap = "^4.6.0"
20+
clap = "^4.6.1"
2121
futures = "^0.3.32"
2222
futures-util = "^0.3.31"
2323
http-body-util = "=0.1.3"
2424
hyper = "=1.9.0"
2525
hyper-util = "=0.1.20"
26-
indexmap = { version = "^2.13.1", features = ["serde"] }
26+
indexmap = { version = "^2.14.0", features = ["serde"] }
2727
log = "^0.4"
2828
serde = { version = "^1.0", features = ["derive"] }
2929
serde_json = "^1.0"
@@ -41,7 +41,7 @@ once_cell = { version = "^1.21.4", optional = true }
4141
toolshed-test = { path = "../test", optional = true }
4242

4343
[dev-dependencies]
44-
libc = "^0.2.184"
44+
libc = "^0.2.185"
4545
mio = "^1.2.0"
4646
mockall = "^0.14.0"
4747
scopeguard = "^1.2.0"

rust/glint/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2024"
77
clap = { version = "4.6", features = ["derive"] }
88
anyhow = "1.0"
99
regex = "1.12"
10-
rayon = "1.10"
10+
rayon = "1.12"
1111
serde = { version = "1.0", features = ["derive"] }
1212
serde_json = "1.0"
1313

rust/runner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ toolshed-test = { path = "../test", optional = true }
2424

2525
[dev-dependencies]
2626
assert_matches = "^1.5"
27-
libc = "^0.2.184"
27+
libc = "^0.2.185"
2828
mockall = { version = "^0.14.0" }
2929
mockall_double = "^0.3"
3030
scopeguard = "^1.2"

0 commit comments

Comments
 (0)