From 7582937439f96112aeb802011d0d187eb53cac57 Mon Sep 17 00:00:00 2001 From: Jamie Hewitt Date: Tue, 27 Jan 2026 23:44:01 +0000 Subject: [PATCH] Add missing tempfile dev-dependency for config tests Co-Authored-By: Claude Opus 4.5 --- Cargo.lock | 1 + Cargo.toml | 3 +++ 2 files changed, 4 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 2c9fa4d..ff834b9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -647,6 +647,7 @@ dependencies = [ "reqwest", "serde", "serde_json", + "tempfile", "thiserror", "tokio", "toml", diff --git a/Cargo.toml b/Cargo.toml index f7b2fc3..4e6605d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,3 +60,6 @@ vt100 = "0.15" lto = true codegen-units = 1 strip = true + +[dev-dependencies] +tempfile = "3.24.0"