生锈 – 如何定义仅测试依赖关系?

前端之家收集整理的这篇文章主要介绍了生锈 – 如何定义仅测试依赖关系?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个Rust库实现一个lint插件。我想要包含最新的,但不要求它在测试之外。指定依赖关系仅用于测试的正确方法是什么?
是。使用dev依赖关系。从 Cargo docs

You can add a [dev-dependencies]@H_404_8@ section to your Cargo.toml@H_404_8@ whose format is equivalent to [dependencies]@H_404_8@:

06000

Dev-dependencies are not used when compiling a package for building,but are used for compiling tests,examples,and benchmarks.

原文链接:https://www.f2er.com/javaschema/282088.html

猜你在找的设计模式相关文章