在我的虚拟清单Cargo.toml
中:
[workspace.dev-dependencies]
serial_test = "2.0.0"
字符串
在非虚拟清单Cargo.toml
中:
[dev-dependencies]
serial_test.workspace = true
型
这会导致以下错误:
Caused by:
error inheriting `serial_test` from workspace root manifest's `workspace.dependencies.serial_test`
Caused by:
`dependency.serial_test` was not found in `workspace.dependencies`
型
这适用于dependencies
部分。如何为dev-dependencies
指定工作区依赖项?
1条答案
按热度按时间piztneat1#
像工作区中的任何其他依赖项一样对它进行decompose,如下所示:
个字符
依赖项是否是dev-dependency仅适用于单个包;
[dependencies]
和[dev-dependencies]
都可以使用来自[workspace.dependencies]
的数据。