From 92e3b739d7c98cfaf3b10812f20334b32327c74f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 12:42:32 -0300 Subject: [PATCH] Bump ron from 0.11.0 to 0.12.0 (#2797) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 13 ++++++++++--- Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 47de98b2..856d52e7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3154,14 +3154,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 2.10.0", + "once_cell", "serde", "serde_derive", + "typeid", "unicode-ident", ] @@ -3804,6 +3805,12 @@ dependencies = [ "syntect", ] +[[package]] +name = "typeid" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c" + [[package]] name = "typenum" version = "1.17.0" diff --git a/Cargo.toml b/Cargo.toml index 1c5aa2cb..fbcaad79 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -63,7 +63,7 @@ ratatui = { version = "0.29", default-features = false, features = [ 'serde', ] } rayon-core = "1.13" -ron = "0.11" +ron = "0.12" scopeguard = "1.2" scopetime = { path = "./scopetime", version = "0.1" } serde = "1.0"