From cd5ca4047434aebcef6e889ebd00e4e7b2e116c2 Mon Sep 17 00:00:00 2001 From: Ping Yu Date: Mon, 16 Feb 2026 11:22:14 +0800 Subject: [PATCH] *: pin tempfile to 3.14.0 for current toolchain 1.84.1 Signed-off-by: Ping Yu --- Cargo.toml | 2 +- proto-build/Cargo.toml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c66ba1fc..0b029bca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -57,7 +57,7 @@ reqwest = { version = "0.11", features = ["json", "native-tls-vendored"] } rstest = "0.18.2" serde_json = "1" serial_test = "0.5.0" -tempfile = "3.6" +tempfile = "=3.14.0" tokio = { version = "1", features = ["sync", "rt-multi-thread", "macros"] } [[test]] diff --git a/proto-build/Cargo.toml b/proto-build/Cargo.toml index 36e0302c..ca3fad6e 100644 --- a/proto-build/Cargo.toml +++ b/proto-build/Cargo.toml @@ -13,3 +13,5 @@ edition = "2021" [dependencies] glob = "0.3" tonic-build = { version = "0.10", features = ["cleanup-markdown"] } +# Keep this compatible with rust-toolchain 1.84.1. +tempfile = "=3.14.0"