正如Is it documented that Cargo can download and bundle multiple versions of the same crate?中所讨论的,Cargo可以为一个程序拉入同一个板条箱的多个版本,如何同时访问这两个版本?
正如Is it documented that Cargo can download and bundle multiple versions of the same crate?中所讨论的,Cargo可以为一个程序拉入同一个板条箱的多个版本,如何同时访问这两个版本?
1条答案
按热度按时间n1bvdmb61#
从Rust 1.31开始,您可以在Cargo. toml中重命名依赖项:
你可以为键选择任何你想要的名字,
package
属性需要是crate的正式名称。在您的代码中,可以使用机箱名称
futures_01
访问版本0.1.x,通过futures_03
访问版本0.3.x。另见: