Skip to content

Commit

Permalink
fix(httpd): add Derive feature to clap in coffee_httpd Cargo.toml
Browse files Browse the repository at this point in the history
This commit addresses the issue where `coffee_httpd` fails to compile independently.
By adding the `Derive` feature to clap in the `coffee_httpd/Cargo.toml` file, we ensure that the necessary dependencies are properly configured.

Signed-off-by: Tarek <[email protected]>
  • Loading branch information
tareknaser authored and vincenzopalazzo committed Dec 29, 2023
1 parent 4683f4e commit 3310567
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coffee_httpd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ path = "src/main.rs"

[dependencies]
actix-web = "4"
clap = "4.1.11"
clap = { version = "4.1.11", features = ["derive"] }
tokio = { version = "1.22.0", features = ["sync"] }
coffee_core = { path = "../coffee_core" }
coffee_lib = { path = "../coffee_lib", features = ["open-api"] }
Expand Down

0 comments on commit 3310567

Please sign in to comment.