From 245c1021693b8998b8a2a2df23e9ac2d6fc439ce Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Mon, 30 Oct 2023 11:51:29 +0100 Subject: [PATCH] examples: Add required clap feature for example-timeline --- examples/timeline/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/timeline/Cargo.toml b/examples/timeline/Cargo.toml index 1ea95336b..4fb7f8a00 100644 --- a/examples/timeline/Cargo.toml +++ b/examples/timeline/Cargo.toml @@ -10,7 +10,7 @@ test = false [dependencies] anyhow = "1" -clap = "4.0.16" +clap = { version = "4.0.16", features = ["derive"] } futures-util = "0.3" tokio = { version = "1.24.2", features = ["macros", "rt-multi-thread"] } tracing-subscriber = "0.3.15"