From cb1c91c7c5c765e584b5c062cfbe3ed093e41903 Mon Sep 17 00:00:00 2001 From: Matt Kantor Date: Sat, 20 Aug 2022 12:07:34 -0400 Subject: [PATCH] Explicitly require the "yaml" feature of insta. Silences a deprecation warning. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f80e023..789eb0f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,7 +49,7 @@ walkdir = "2.3.2" [dev-dependencies] criterion = "0.3.6" env_logger = "0.9.0" -insta = "1.18.2" +insta = { version = "1.18.2", features = ["yaml"] } lazy_static = "1.4.0" maplit = "1.0.2" regex = "1.6.0"