From 08933a3bf99f495a2a7a0138e1f56ce1323f30ce Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 00:40:26 +0000 Subject: [PATCH] build(deps): bump ron from 0.11.0 to 0.12.0 Bumps [ron](https://github.com/ron-rs/ron) from 0.11.0 to 0.12.0. - [Release notes](https://github.com/ron-rs/ron/releases) - [Changelog](https://github.com/ron-rs/ron/blob/master/CHANGELOG.md) - [Commits](https://github.com/ron-rs/ron/compare/v0.11.0...v0.12.0) --- updated-dependencies: - dependency-name: ron dependency-version: 0.12.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 19 ++++++++++--------- compiler/lunc_llib_meta/Cargo.toml | 2 +- src/tools/luntests/Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8e7a76e3..2434fa51 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -94,12 +94,6 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" -[[package]] -name = "base64" -version = "0.22.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" - [[package]] name = "bitflags" version = "2.10.0" @@ -1152,14 +1146,15 @@ dependencies = [ [[package]] name = "ron" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db09040cc89e461f1a265139777a2bde7f8d8c67c4936f700c63ce3e2904d468" +checksum = "fd490c5b18261893f14449cbd28cb9c0b637aebf161cd77900bfdedaff21ec32" dependencies = [ - "base64", "bitflags", + "once_cell", "serde", "serde_derive", + "typeid", "unicode-ident", ] @@ -1412,6 +1407,12 @@ dependencies = [ "zerovec", ] +[[package]] +name = "typeid" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c" + [[package]] name = "tz-rs" version = "0.7.0" diff --git a/compiler/lunc_llib_meta/Cargo.toml b/compiler/lunc_llib_meta/Cargo.toml index 1a9ebfbc..b6dccb32 100644 --- a/compiler/lunc_llib_meta/Cargo.toml +++ b/compiler/lunc_llib_meta/Cargo.toml @@ -17,4 +17,4 @@ serde = { workspace = true } postcard = { version = "1.1.3", features = ["use-std"] } chrono = { version = "0.4.42", features = ["serde"] } thiserror = { workspace = true } -ron = { version = "0.11.0" } +ron = { version = "0.12.0" } diff --git a/src/tools/luntests/Cargo.toml b/src/tools/luntests/Cargo.toml index 3d1946e1..9198f6b8 100644 --- a/src/tools/luntests/Cargo.toml +++ b/src/tools/luntests/Cargo.toml @@ -10,7 +10,7 @@ lunc_utils = { workspace = true } # other dependencies termcolor = { workspace = true } serde = { workspace = true } -ron = "0.11.0" +ron = "0.12.0" indexmap = { version = "2.12.0", features = ["serde"] } humantime = { workspace = true } thiserror = { workspace = true }