铁锈货物找不到postgres包

时间:2014-07-31 07:09:42

标签: postgresql rust rust-cargo rust-crates

我在Cargo.toml

中有这个
[dependencies.postgres]

git = "https://github.com/sfackler/rust-postgres.git"

在运行cargo build

时,会产生以下输出
$ cargo build -u
    Updating git repository `https://github.com/sfackler/rust-postgres.git`
No package named `postgres` found (required by `hello-world`).
Location searched: https://github.com/sfackler/rust-postgres.git
Version required: *

我在这里缺少什么?

1 个答案:

答案 0 :(得分:3)

更改[dependencies.postgres] [dependencies.rust-postgres]

原因是:该软件包的Cargo.toml将软件包名称定义为rust-postgres,这需要匹配。

但请注意,它还将lib的名称定义为postgres。 所以你会extern crate postgres; extern crate rust-postgres;