可以使用 Cargo 在发布模式下构建测试吗?
Can tests be built in release mode using Cargo?
我正在使用 cargo build --release
在发布配置中构建我的项目,并使用 cargo test
构建和 运行 我的测试。
但是,我还想在发布模式下构建我的测试;这可以使用货物来完成吗?
cargo test --release
存在,但它与仅启用优化略有不同。例如,调试断言被禁用。
您还可以在the [profile.test]
section of your Cargo.toml, 中设置opt-level
。
我正在使用 cargo build --release
在发布配置中构建我的项目,并使用 cargo test
构建和 运行 我的测试。
但是,我还想在发布模式下构建我的测试;这可以使用货物来完成吗?
cargo test --release
存在,但它与仅启用优化略有不同。例如,调试断言被禁用。
您还可以在the [profile.test]
section of your Cargo.toml, opt-level
。