From 65716f137669914e571d223b11398876b28076a4 Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Mon, 11 Apr 2022 13:12:30 +0000 Subject: [PATCH] build: fix performance-metrics build It suffered from the same issue like the main program after switching to Rust 2021 edition, but the issue was not caught by the CI. Signed-off-by: Wei Liu --- performance-metrics/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/performance-metrics/Cargo.toml b/performance-metrics/Cargo.toml index a9533dc70..854073c52 100644 --- a/performance-metrics/Cargo.toml +++ b/performance-metrics/Cargo.toml @@ -16,4 +16,4 @@ thiserror = "1.0.30" wait-timeout = "0.2.0" [build-dependencies] -clap = { version = "3.1.8", features = ["wrap_help"] } +clap = { version = "3.1.8", features = ["cargo"] }