From 3cf3f81ba8facc6c559f48b5d81ad42b7ccf2998 Mon Sep 17 00:00:00 2001 From: m Date: Mon, 2 Sep 2024 12:01:14 -0700 Subject: [PATCH] add insta-cmd --- Cargo.lock | 12 ++++++++++++ Cargo.toml | 1 + 2 files changed, 13 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 875b2cab..b17600d5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -346,6 +346,7 @@ dependencies = [ "human-panic", "ignore", "insta", + "insta-cmd", "itertools 0.13.0", "log", "predicates", @@ -1894,6 +1895,17 @@ dependencies = [ "similar", ] +[[package]] +name = "insta-cmd" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffeeefa927925cced49ccb01bf3e57c9d4cd132df21e576eb9415baeab2d3de6" +dependencies = [ + "insta", + "serde", + "serde_json", +] + [[package]] name = "ipnet" version = "2.9.0" diff --git a/Cargo.toml b/Cargo.toml index 370d191b..ad496650 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -55,6 +55,7 @@ predicates = "3.1.0" insta = { version = "1.39.0", features = ["ron", "filters"] } fs-err = "2.11.0" regex = "1.10.6" +insta-cmd = "0.6.0" # In dev and test profiles, compile all dependencies with optimizations enabled, # but still checking debug assertions and overflows.