fix: Correct optional dependency syntax in Cargo.toml features

Co-authored-by: aider (openai/andrew/openrouter/sonoma-sky-alpha) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-09-10 10:01:41 -03:00
parent 39c3375cf5
commit 298773c507

View File

@@ -79,14 +79,14 @@ xz = []
zstd = [] zstd = []
# Plugin features (meta and filter) # Plugin features (meta and filter)
all-meta-plugins = ["magic"] all-meta-plugins = ["dep:magic"]
all-filter-plugins = [] all-filter-plugins = []
# Individual plugin features # Individual plugin features
magic = ["magic"] magic = ["dep:magic"]
# MCP feature (Model Context Protocol support) # MCP feature (Model Context Protocol support)
mcp = ["rmcp"] mcp = ["dep:rmcp"]
[dev-dependencies] [dev-dependencies]
tempfile = "3.3.0" tempfile = "3.3.0"