diff --git a/Cargo.lock b/Cargo.lock index 4bee240b..df391fcd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1469,15 +1469,16 @@ dependencies = [ [[package]] name = "ron" -version = "0.8.1" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94" +checksum = "beceb6f7bf81c73e73aeef6dd1356d9a1b2b4909e1f0fc3e59b034f9572d7b7f" dependencies = [ - "base64 0.21.5", + "base64 0.22.1", "bitflags 2.4.1", "indexmap 2.2.2", "serde", "serde_derive", + "unicode-ident", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 049614ce..164be027 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -129,7 +129,7 @@ toml = { version = "0.8", 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.10", optional = true } json5_rs = { version = "0.4", optional = true, package = "json5" } indexmap = { version = "2.2", features = ["serde"], optional = true } convert_case = { version = "0.6", optional = true }