diff --git a/Cargo.lock b/Cargo.lock index 7c3e3d77..a0651e58 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1480,15 +1480,16 @@ dependencies = [ [[package]] name = "ron" -version = "0.8.1" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94" +checksum = "db09040cc89e461f1a265139777a2bde7f8d8c67c4936f700c63ce3e2904d468" dependencies = [ - "base64 0.21.5", + "base64 0.22.1", "bitflags 2.4.1", "indexmap 2.10.0", "serde", "serde_derive", + "unicode-ident", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index f1e17600..c4a6adf8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -139,7 +139,7 @@ toml = { version = "0.9", optional = true, default-features = false, features = serde_json = { version = "1.0", optional = true } yaml-rust2 = { version = "0.10", optional = true } rust-ini = { version = "0.21", optional = true } -ron = { version = "0.8", optional = true } +ron = { version = "0.11", optional = true } json5_rs = { version = "0.4", optional = true, package = "json5" } indexmap = { version = "2.10.0", features = ["serde"], optional = true } convert_case = { version = "0.6", optional = true }