From 63e9d9aacf995305bec1ae6aecbb605358c510ad Mon Sep 17 00:00:00 2001 From: Joscha Date: Thu, 20 Mar 2025 08:31:32 +0100 Subject: [PATCH] Fix cargo clippy --examples --- euphoxide-bot/Cargo.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/euphoxide-bot/Cargo.toml b/euphoxide-bot/Cargo.toml index 4ae61bf..c356f34 100644 --- a/euphoxide-bot/Cargo.toml +++ b/euphoxide-bot/Cargo.toml @@ -20,9 +20,14 @@ tokio-tungstenite = { workspace = true } [dev-dependencies] anyhow = { workspace = true } +clap = { workspace = true, features = ["derive"] } rustls = { workspace = true } tokio = { workspace = true, features = ["full"] } tokio-tungstenite = { workspace = true, features = ["rustls-tls-native-roots"] } +[[example]] +name = "examplebot" +required-features = ["clap"] + [lints] workspace = true