Rust 的 Cargo 中的“npm install ../my-another-package”是什么?
What is ``npm install ../my-another-package'' in Rust's Cargo?
在我的 Cargo.toml 中,我将 [dependencies]
定义为:
[dependencies]
my-another-package = "0.0.1"
但我不想将 my_another_package
放在 GitHub 上,因为它是专有的。我想从我的本地磁盘安装它。使用 NPM,我会做类似 npm install ../my-another-package
的事情。
你想要 Cargo 所说的 "path dependency":
[dependencies.my-another-package]
path = "path/to/my-another-package"
在我的 Cargo.toml 中,我将 [dependencies]
定义为:
[dependencies]
my-another-package = "0.0.1"
但我不想将 my_another_package
放在 GitHub 上,因为它是专有的。我想从我的本地磁盘安装它。使用 NPM,我会做类似 npm install ../my-another-package
的事情。
你想要 Cargo 所说的 "path dependency":
[dependencies.my-another-package]
path = "path/to/my-another-package"