From 54af8deb30e74ab3b95948ccb9609eff2a10e2a6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Feb 2026 04:32:37 +0000 Subject: [PATCH] Bump toml from 0.9.12+spec-1.1.0 to 1.0.0+spec-1.1.0 Bumps [toml](https://github.com/toml-rs/toml) from 0.9.12+spec-1.1.0 to 1.0.0+spec-1.1.0. - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.9.12...toml-v1.0.0) --- updated-dependencies: - dependency-name: toml dependency-version: 1.0.0+spec-1.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 17 +++++++++++++---- Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 79339485..4657c5f4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3042,14 +3042,14 @@ dependencies = [ [[package]] name = "toml" -version = "0.9.12+spec-1.1.0" +version = "1.0.0+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863" +checksum = "d1d7e18e3dd1d31e0ee5e863a8091ffec2fcc271636586042452b656a22c8ee1" dependencies = [ "indexmap", "serde_core", "serde_spanned", - "toml_datetime", + "toml_datetime 1.0.0+spec-1.1.0", "toml_parser", "toml_writer", "winnow", @@ -3064,6 +3064,15 @@ dependencies = [ "serde_core", ] +[[package]] +name = "toml_datetime" +version = "1.0.0+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32c2555c699578a4f59f0cc68e5116c8d7cabbd45e1409b989d4be085b53f13e" +dependencies = [ + "serde_core", +] + [[package]] name = "toml_edit" version = "0.23.10+spec-1.0.0" @@ -3071,7 +3080,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269" dependencies = [ "indexmap", - "toml_datetime", + "toml_datetime 0.7.5+spec-1.1.0", "toml_parser", "winnow", ] diff --git a/Cargo.toml b/Cargo.toml index 0e0d7bdd..d69b37c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ members = ["client", "server", "common", "save", "save/gen-protos"] hecs = "0.11.0" nalgebra = { version = "0.34.1", features = ["libm-force"] } quinn = { version = "0.11", default-features = false, features = ["rustls", "ring", "runtime-tokio"] } -toml = { version = "0.9.12", default-features = false, features = ["parse", "serde", "std"] } +toml = { version = "1.0.0", default-features = false, features = ["parse", "serde", "std"] } [profile.dev] opt-level = 1