From 8fe49b8e63f7c732c21b6e094001ef1797420b36 Mon Sep 17 00:00:00 2001 From: Georg Semmler Date: Sat, 4 May 2024 10:56:23 +0200 Subject: [PATCH] Use trybuild 1.0.92 as that contains the necessary fix --- diesel_compile_tests/Cargo.lock | 5 +++-- diesel_compile_tests/Cargo.toml | 4 +--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/diesel_compile_tests/Cargo.lock b/diesel_compile_tests/Cargo.lock index ed0bebf027d8..48669bec4793 100644 --- a/diesel_compile_tests/Cargo.lock +++ b/diesel_compile_tests/Cargo.lock @@ -668,8 +668,9 @@ dependencies = [ [[package]] name = "trybuild" -version = "1.0.91" -source = "git+https://github.com/weiznich/trybuild/?rev=8f99e5a#8f99e5a7d21da27a38b410437187ae44715b87f1" +version = "1.0.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "35b69ff3ed900f74eb1e0d9bdd3df38da829dc4a26531674f6f019ca7c093c8d" dependencies = [ "glob", "once_cell", diff --git a/diesel_compile_tests/Cargo.toml b/diesel_compile_tests/Cargo.toml index c5fb768539a7..3aa08ebe30f7 100644 --- a/diesel_compile_tests/Cargo.toml +++ b/diesel_compile_tests/Cargo.toml @@ -5,9 +5,7 @@ edition = "2021" [dependencies] diesel = { version = "2.0.0", default-features = false, features = ["extras", "sqlite", "postgres", "mysql", "with-deprecated"], path = "../diesel" } -trybuild = "1.0.75" +trybuild = "1.0.92" [workspace] -[patch.crates-io] -trybuild = { git = "https://github.com/weiznich/trybuild/", rev = "8f99e5a" }