From 5e9f4f56aca84211f87f84ddf76ea04d017e7aa5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Feb 2026 04:54:17 +0000 Subject: [PATCH] Bump trybuild from 1.0.115 to 1.0.116 Bumps [trybuild](https://github.com/dtolnay/trybuild) from 1.0.115 to 1.0.116. - [Release notes](https://github.com/dtolnay/trybuild/releases) - [Commits](https://github.com/dtolnay/trybuild/compare/1.0.115...1.0.116) --- updated-dependencies: - dependency-name: trybuild dependency-version: 1.0.116 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 38 +++++++++++++++++++++++++++++++------- dropshot/Cargo.toml | 2 +- 2 files changed, 32 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index da3633b3..3fc89d68 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -417,7 +417,7 @@ dependencies = [ "tokio", "tokio-rustls 0.25.0", "tokio-tungstenite", - "toml", + "toml 0.9.11+spec-1.1.0", "trybuild", "usdt", "uuid", @@ -2573,7 +2573,22 @@ dependencies = [ "indexmap", "serde_core", "serde_spanned", - "toml_datetime", + "toml_datetime 0.7.5+spec-1.1.0", + "toml_parser", + "toml_writer", + "winnow", +] + +[[package]] +name = "toml" +version = "1.0.1+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbe30f93627849fa362d4a602212d41bb237dc2bd0f8ba0b2ce785012e124220" +dependencies = [ + "indexmap", + "serde_core", + "serde_spanned", + "toml_datetime 1.0.0+spec-1.1.0", "toml_parser", "toml_writer", "winnow", @@ -2588,11 +2603,20 @@ 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_parser" -version = "1.0.6+spec-1.1.0" +version = "1.0.8+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44" +checksum = "0742ff5ff03ea7e67c8ae6c93cac239e0d9784833362da3f9a9c1da8dfefcbdc" dependencies = [ "winnow", ] @@ -2675,9 +2699,9 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "trybuild" -version = "1.0.115" +version = "1.0.116" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f614c21bd3a61bad9501d75cbb7686f00386c806d7f456778432c25cf86948a" +checksum = "47c635f0191bd3a2941013e5062667100969f8c4e9cd787c14f977265d73616e" dependencies = [ "glob", "serde", @@ -2685,7 +2709,7 @@ dependencies = [ "serde_json", "target-triple", "termcolor", - "toml", + "toml 1.0.1+spec-1.1.0", ] [[package]] diff --git a/dropshot/Cargo.toml b/dropshot/Cargo.toml index 5ba81e24..1845fbbc 100644 --- a/dropshot/Cargo.toml +++ b/dropshot/Cargo.toml @@ -104,7 +104,7 @@ libc = "0.2.180" mime_guess = "2.0.5" subprocess = "0.2.15" tempfile = "3.24" -trybuild = "1.0.115" +trybuild = "1.0.116" # Used by the https examples and tests pem = "3.0" rcgen = "0.14.7"