在我的 Cargo.toml 中,我定义[dependencies]
为:
[dependencies]
my-another-package = "0.0.1"
但我不想放在my_another_package
GitHub 上,因为它是专有的。我想从我的本地磁盘安装它。使用 NPM,我会做类似npm install ../my-another-package
.
在我的 Cargo.toml 中,我定义[dependencies]
为:
[dependencies]
my-another-package = "0.0.1"
但我不想放在my_another_package
GitHub 上,因为它是专有的。我想从我的本地磁盘安装它。使用 NPM,我会做类似npm install ../my-another-package
.
你想要 Cargo 所说的“路径依赖”:
[dependencies.my-another-package]
path = "path/to/my-another-package"