用货物安装未注册的箱子

时间:2017-10-28 01:14:22

标签: rust package rust-cargo rust-crates

我有一个未在crates.io上注册的箱子(https://github.com/wilbertom/bichannels)。我想将它添加到我当前的箱子中,作为依赖。我已经尝试进入其目录(放置在外部包中)并运行realloc(),但这不起作用,而是出现此错误:

cargo install

所以似乎只能安装二进制包,但是如何将库包添加到我的依赖项?我试过添加:

error: no packages found with binaries or examples

到我的Cargo.toml,但只是说这个包不在crates.io上。

1 个答案:

答案 0 :(得分:2)

有两种选择:

将此添加到Cargo.toml:

[dependencies]
"bichannels" = {git = "https://github.com/wilbertom/bichannels"}

或者在本地git克隆lib并使用:

[dependencies]
"bichannels" = {path = "<roor_dir_of_your_clone>"}