From 8ebed4c3a11ae0847ac957f1f544591aa9341355 Mon Sep 17 00:00:00 2001 From: Calvin Prewitt Date: Tue, 7 May 2024 09:05:27 -0500 Subject: [PATCH] added `dep:` prefix to be more explicit in the Cargo.toml feature flag dependency --- crates/client/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/client/Cargo.toml b/crates/client/Cargo.toml index 1eb91e50..d6ff0378 100644 --- a/crates/client/Cargo.toml +++ b/crates/client/Cargo.toml @@ -12,7 +12,7 @@ repository = { workspace = true} [features] default = ["cli-interactive"] native-tls-vendored = ["reqwest/native-tls-vendored"] -cli-interactive = ["dialoguer"] +cli-interactive = ["dep:dialoguer"] not-interactive-cli = [] [dependencies]