From 298773c507d26b5d2a1e0441427c395c46cb904d Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Wed, 10 Sep 2025 10:01:41 -0300 Subject: [PATCH] fix: Correct optional dependency syntax in Cargo.toml features Co-authored-by: aider (openai/andrew/openrouter/sonoma-sky-alpha) --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bc26852..42c7630 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -79,14 +79,14 @@ xz = [] zstd = [] # Plugin features (meta and filter) -all-meta-plugins = ["magic"] +all-meta-plugins = ["dep:magic"] all-filter-plugins = [] # Individual plugin features -magic = ["magic"] +magic = ["dep:magic"] # MCP feature (Model Context Protocol support) -mcp = ["rmcp"] +mcp = ["dep:rmcp"] [dev-dependencies] tempfile = "3.3.0"