diff --git a/Cargo.lock b/Cargo.lock index bd53ea354..1e6685332 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3939,9 +3939,9 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" [[package]] name = "proc-macro2" -version = "1.0.84" +version = "1.0.85" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec96c6a92621310b51366f1e28d05ef11489516e93be030060e5fc12024a49d6" +checksum = "22244ce15aa966053a896d1accb3a6e68469b97c7f33f284b99f0d576879fc23" dependencies = [ "unicode-ident", ] @@ -4389,7 +4389,7 @@ dependencies = [ "ruffle_video_software", "sys-locale", "tokio", - "toml_edit 0.22.13", + "toml_edit 0.22.14", "tracing", "tracing-appender", "tracing-subscriber", @@ -4420,7 +4420,7 @@ dependencies = [ "tempfile", "thiserror", "tokio", - "toml_edit 0.22.13", + "toml_edit 0.22.14", "tracing", "url", "urlencoding", @@ -5511,14 +5511,14 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.13" +version = "0.8.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4e43f8cc456c9704c851ae29c67e17ef65d2c30017c17a9765b89c382dc8bba" +checksum = "6f49eb2ab21d2f26bd6db7bf383edc527a7ebaee412d17af4d40fdccd442f335" dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit 0.22.13", + "toml_edit 0.22.14", ] [[package]] @@ -5543,9 +5543,9 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.22.13" +version = "0.22.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c127785850e8c20836d49732ae6abfa47616e60bf9d9f57c43c250361a9db96c" +checksum = "f21c7aaf97f1bd9ca9d4f9e73b0a6c74bd5afef56f2bc931943a6e1c37e04e38" dependencies = [ "indexmap", "serde", @@ -6944,9 +6944,9 @@ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" [[package]] name = "zip" -version = "2.1.1" +version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1dd56a4d5921bc2f99947ac5b3abe5f510b1be7376fdc5e9fce4a23c6a93e87c" +checksum = "098d5d7737fb0b70814faa73c17df84f047d38dd31d13bbf2ec3fb354b5abf45" dependencies = [ "arbitrary", "crc32fast", diff --git a/core/build_playerglobal/Cargo.toml b/core/build_playerglobal/Cargo.toml index 823f376fb..aec779012 100644 --- a/core/build_playerglobal/Cargo.toml +++ b/core/build_playerglobal/Cargo.toml @@ -12,7 +12,7 @@ workspace = true [dependencies] convert_case = "0.6.0" -proc-macro2 = "1.0.84" +proc-macro2 = "1.0.85" quote = "1.0.36" swf = { path = "../../swf" } clap = { workspace = true } diff --git a/desktop/Cargo.toml b/desktop/Cargo.toml index a95f65619..9059ef592 100644 --- a/desktop/Cargo.toml +++ b/desktop/Cargo.toml @@ -42,7 +42,7 @@ wgpu = { workspace = true } futures = { workspace = true } chrono = { workspace = true } fluent-templates = "0.9.4" -toml_edit = { version = "0.22.13", features = ["parse"] } +toml_edit = { version = "0.22.14", features = ["parse"] } gilrs = "0.10" tokio = { workspace = true, features = ["rt-multi-thread", "macros"]} diff --git a/frontend-utils/Cargo.toml b/frontend-utils/Cargo.toml index 60a4c0096..fe5a99b33 100644 --- a/frontend-utils/Cargo.toml +++ b/frontend-utils/Cargo.toml @@ -11,11 +11,11 @@ version.workspace = true workspace = true [dependencies] -toml_edit = { version = "0.22.13", features = ["parse"] } +toml_edit = { version = "0.22.14", features = ["parse"] } url = { workspace = true } tracing = { workspace = true } thiserror = { workspace = true } -zip = { version = "2.1.1", default-features = false, features = ["deflate"]} +zip = { version = "2.1.2", default-features = false, features = ["deflate"]} urlencoding = "2.1.3" ruffle_core = { path = "../core", default-features = false } ruffle_render = { path = "../render", default-features = false } diff --git a/tests/framework/Cargo.toml b/tests/framework/Cargo.toml index 7527cb1e3..e13bc2a09 100644 --- a/tests/framework/Cargo.toml +++ b/tests/framework/Cargo.toml @@ -24,7 +24,7 @@ chrono = { workspace = true } approx = "0.5.1" pretty_assertions = "1.4.0" serde = { workspace = true } -toml = "0.8.13" +toml = "0.8.14" anyhow = { workspace = true } async-channel = { workspace = true } vfs = "0.12.0"