From 477440d387617f26b421a14e83fdae6f0332b79a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 01:52:11 +0000 Subject: [PATCH] fix(deps): update rust dependencies --- Cargo.lock | 16 ++++++++-------- core/Cargo.toml | 2 +- render/Cargo.toml | 2 +- render/wgpu/Cargo.toml | 2 +- tests/framework/Cargo.toml | 2 +- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4586b25a9..2f2148369 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2607,9 +2607,9 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.2.1" +version = "2.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "433de089bd45971eecf4668ee0ee8f4cec17db4f8bd8f7bc3197a6ce37aa7d9b" +checksum = "824b2ae422412366ba479e8111fd301f7b5faece8149317bb81925979a53f520" dependencies = [ "equivalent", "hashbrown 0.14.3", @@ -3921,7 +3921,7 @@ version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" dependencies = [ - "toml_edit 0.21.0", + "toml_edit 0.21.1", ] [[package]] @@ -5300,14 +5300,14 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "toml" -version = "0.8.8" +version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35" +checksum = "c6a4b9e8023eb94392d3dca65d717c53abc5dad49c07cb65bb8fcd87115fa325" dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit 0.21.0", + "toml_edit 0.21.1", ] [[package]] @@ -5332,9 +5332,9 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.21.0" +version = "0.21.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03" +checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" dependencies = [ "indexmap", "serde", diff --git a/core/Cargo.toml b/core/Cargo.toml index 98816918d..dc6a67653 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -18,7 +18,7 @@ flate2 = "1.0.28" fnv = "1.0.7" gc-arena = { package = "ruffle_gc_arena", path = "../ruffle_gc_arena" } generational-arena = "0.2.9" -indexmap = "2.2.1" +indexmap = "2.2.2" tracing = { workspace = true } ruffle_render = { path = "../render", features = ["tessellator"] } ruffle_video = { path = "../video" } diff --git a/render/Cargo.toml b/render/Cargo.toml index 2bb44e7f4..3c34c4703 100644 --- a/render/Cargo.toml +++ b/render/Cargo.toml @@ -32,7 +32,7 @@ num-traits = "0.2" num-derive = "0.4" byteorder = "1.5" wgpu = { workspace = true, optional = true } -indexmap = "2.2.1" +indexmap = "2.2.2" # This crate has a `compile_error!` on apple platforms [target.'cfg(not(target_vendor = "apple"))'.dependencies.renderdoc] diff --git a/render/wgpu/Cargo.toml b/render/wgpu/Cargo.toml index b59c4beb0..eeff9ed5f 100644 --- a/render/wgpu/Cargo.toml +++ b/render/wgpu/Cargo.toml @@ -28,7 +28,7 @@ downcast-rs = "1.2.0" profiling = { version = "1.0", default-features = false, optional = true } lru = "0.12.2" naga = { workspace = true } -indexmap = "2.2.1" +indexmap = "2.2.2" # desktop [target.'cfg(not(target_family = "wasm"))'.dependencies.futures] diff --git a/tests/framework/Cargo.toml b/tests/framework/Cargo.toml index a2bf5df2d..e03878d92 100644 --- a/tests/framework/Cargo.toml +++ b/tests/framework/Cargo.toml @@ -24,7 +24,7 @@ chrono = "0.4.33" approx = "0.5.1" pretty_assertions = "1.4.0" serde = "1.0.196" -toml = "0.8.8" +toml = "0.8.9" anyhow = "1.0.79" async-channel = "2.1.1" vfs = "0.10.0"