From 1915083b0821ae1c4e5b562d6b4f73d1c0941633 Mon Sep 17 00:00:00 2001 From: Giovanni d'Amelio Date: Mon, 18 Mar 2024 10:25:49 -0700 Subject: [PATCH] Move trycmd to a dev-dependency --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9ff3792..8278a05 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,6 @@ edition = "2021" [dependencies] clap = {version = "4.5.3", features = ["default", "cargo"]} -trycmd = {version = "0.15.0", features = ["default"]} # add "debug" feature if you're having trouble strip-ansi-escapes = "0.2.0" anyhow = "1.0.81" @@ -20,4 +19,7 @@ clap = {version = "4.5.3", features = ["default", "cargo"]} clap_mangen = "0.2.20" clap_complete = "4.5.1" +[dev-dependencies] +trycmd = {version = "0.15.0", features = ["default"]} # add "debug" feature if you're having trouble + [features]