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