如何为 Cargo 中的子依赖项指定功能?

问题描述 投票:0回答:1

我正在开发一个使用 reqwest 和 self_update 的 CLI 应用程序。 self_update 也使用 reqwest。我希望我的应用程序使用 rustls 而不是引入 openssl 依赖项。 Cargo.toml 允许选择依赖项的功能

[dependencies.reqwest]
version = "0.10"
default-features = false
features = ["rustls-tls", "json", "blocking"]

如果子依赖项起作用那就太酷了:

[dependencies.self_update.reqwest]
version = "0.10"
default-features = false
features = ["rustls-tls", "json", "blocking"]

我还查看了替换部分,但只有这样的东西才适用于我分支代码的地方:

"reqwest:0.10.1" = { branch = "rustls", git = "https://github.com/ctaggart/reqwest" }

但我想要的是默认功能和支持的功能:

"reqwest:0.10.1" = { tag="v0.10.1", git = "https://github.com/seanmonstar/reqwest", default-features = false, features = ["rustls-tls", "json", "blocking"] }

如何使用 Cargo 配置 Reqwest 或 Tokio 或任何其他高度可配置的非直接依赖项的功能?

rust rust-cargo
1个回答
13
投票

我同意你的观点,支持子依赖项功能会很棒。

这并不理想,但如果您将子依赖项添加为依赖项,则该功能将起作用。

[dependencies]
...
surf = "2.1.0" # which depends on http-client, which depends on isahc
...

[dependencies.isahc]
features = ["static-ssl"]

如果您不指定版本,您将收到弃用警告,但至少您不必手动跟踪子依赖项版本:

warning: dependency (isahc) specified without providing a local path, Git repository, or version to use. This will be considered an error in future versions
© www.soinside.com 2019 - 2024. All rights reserved.