0
rustc --cfg foo

我将如何在货物中做到这一点?这features是为了什么?

功能似乎仅适用于可选依赖项。

4

1 回答 1

2

是的。http://doc.crates.io/manifest.html#rules

选择功能时,货物将使用-CFG功能=“ $ {feature_name}”调用Rustc。如果包含一个功能组,则它及其所有单独的功能都将包括在内。这可以通过 #[cfg(feature = "foo")] 在代码中进行测试

于 2015-01-21T17:16:42.330 回答