From 1ac59884125bbba06ef823e6057039d6b410544b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrzej=20Bro=C5=84ski?= Date: Tue, 19 Mar 2024 09:58:03 +0100 Subject: [PATCH] Enable `clap` feature for warning about deprecations. This would catch issues like https://github.com/cspr-rad/kairos/issues/37. --- kairos-cli/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kairos-cli/Cargo.toml b/kairos-cli/Cargo.toml index fa403f61..1451d370 100644 --- a/kairos-cli/Cargo.toml +++ b/kairos-cli/Cargo.toml @@ -14,7 +14,7 @@ edition = "2021" [dependencies] casper-types = { version = "4.0.1", features = ["std"] } # TODO: Change `std` -> `std-fs-io` in the future version. -clap = { version = "4.5", features = ["derive"] } +clap = { version = "4.5", features = ["derive", "deprecated"] } hex = "0.4" thiserror = "1"