Skip to content

Commit a2c3d5e

Browse files
dependabot[bot]torokati44
authored andcommitted
build(deps): bump the cargo-minor group across 1 directory with 7 updates
Bumps the cargo-minor group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.5.31` | `4.5.32` | | [serde](https://github.com/serde-rs/serde) | `1.0.218` | `1.0.219` | | [tokio](https://github.com/tokio-rs/tokio) | `1.43.0` | `1.44.0` | | [indexmap](https://github.com/indexmap-rs/indexmap) | `2.7.1` | `2.8.0` | | [either](https://github.com/rayon-rs/either) | `1.14.0` | `1.15.0` | | [syn](https://github.com/dtolnay/syn) | `2.0.99` | `2.0.100` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.11.6` | `0.11.7` | Updates `clap` from 4.5.31 to 4.5.32 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](clap-rs/clap@v4.5.31...clap_complete-v4.5.32) Updates `serde` from 1.0.218 to 1.0.219 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](serde-rs/serde@v1.0.218...v1.0.219) Updates `tokio` from 1.43.0 to 1.44.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](tokio-rs/tokio@tokio-1.43.0...tokio-1.44.0) Updates `indexmap` from 2.7.1 to 2.8.0 - [Changelog](https://github.com/indexmap-rs/indexmap/blob/main/RELEASES.md) - [Commits](indexmap-rs/indexmap@2.7.1...2.8.0) Updates `either` from 1.14.0 to 1.15.0 - [Commits](rayon-rs/either@1.14.0...1.15.0) Updates `syn` from 2.0.99 to 2.0.100 - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](dtolnay/syn@2.0.99...2.0.100) Updates `env_logger` from 0.11.6 to 0.11.7 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](rust-cli/env_logger@v0.11.6...v0.11.7) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor - dependency-name: indexmap dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor - dependency-name: either dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor - dependency-name: syn dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 927976d commit a2c3d5e

File tree

7 files changed

+63
-36
lines changed

7 files changed

+63
-36
lines changed

Cargo.lock

+54-27
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
5151
naga = { version = "24.0.0", features = ["wgsl-out"] }
5252
wgpu = "24.0.1"
5353
egui = "0.31.1"
54-
clap = { version = "4.5.31", features = ["derive"] }
54+
clap = { version = "4.5.32", features = ["derive"] }
5555
cpal = "0.15.3"
5656
anyhow = "1.0"
5757
slotmap = "1.0.7"
@@ -68,13 +68,13 @@ web-sys = "0.3.77"
6868
log = "0.4"
6969
num-derive = "0.4.2"
7070
num-traits = "0.2.19"
71-
serde = "1.0.218"
71+
serde = "1.0.219"
7272
thiserror = "2.0.12"
7373
url = "2.5.2"
7474
# Make sure to match wasm-bindgen-cli version to this everywhere.
7575
wasm-bindgen = "=0.2.100"
7676
walkdir = "2.5.0"
77-
tokio = "1.43.0"
77+
tokio = "1.44.0"
7878
# Switching from the `async-std` to the `tokio` runtime, which we depend on anyway.
7979
rfd = { version = "0.15.2", default-features = false, features = ["tokio", "xdg-portal"] }
8080

core/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ flate2 = { workspace = true }
1818
fnv = "1.0.7"
1919
gc-arena = { package = "ruffle_gc_arena", path = "../ruffle_gc_arena" }
2020
slotmap = { workspace = true }
21-
indexmap = "2.7.1"
21+
indexmap = "2.8.0"
2222
tracing = { workspace = true }
2323
ruffle_render = { path = "../render", features = ["tessellator"] }
2424
ruffle_video = { path = "../video" }
@@ -66,7 +66,7 @@ ttf-parser = "0.25"
6666
num-bigint = "0.4"
6767
unic-segment = "0.9.0"
6868
id3 = "1.16.1"
69-
either = "1.14.0"
69+
either = "1.15.0"
7070
chardetng = "0.1.17"
7171
tracy-client = { version = "0.17.6", optional = true, default-features = false }
7272

core/macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ proc-macro = true
1616
[dependencies]
1717
proc-macro2 = "1.0.94"
1818
quote = "1.0.39"
19-
syn = { version = "2.0.99", features = ["extra-traits", "full"] }
19+
syn = { version = "2.0.100", features = ["extra-traits", "full"] }

render/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ num-traits = { workspace = true }
3131
num-derive = { workspace = true }
3232
byteorder = "1.5"
3333
wgpu = { workspace = true, optional = true }
34-
indexmap = "2.7.1"
34+
indexmap = "2.8.0"
3535

3636
# This crate has a `compile_error!` on apple platforms
3737
[target.'cfg(not(target_vendor = "apple"))'.dependencies.renderdoc]

render/wgpu/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ naga-pixelbender = { path = "../naga-pixelbender" }
2525
profiling = { version = "1.0", default-features = false, optional = true }
2626
lru = "0.13.0"
2727
naga = { workspace = true }
28-
indexmap = "2.7.1"
28+
indexmap = "2.8.0"
2929

3030
# desktop
3131
[target.'cfg(not(target_family = "wasm"))'.dependencies.futures]

tests/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ walkdir = { workspace = true }
3434
anyhow = { workspace = true }
3535
image = { workspace = true, features = ["png"] }
3636
futures = { workspace = true }
37-
env_logger = "0.11.6"
37+
env_logger = "0.11.7"
3838
tracing = { workspace = true }
3939
tracing-subscriber = { workspace = true }
4040

0 commit comments

Comments
 (0)