我在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: *
我在这里缺少什么?
答案 0 :(得分:3)
更改[dependencies.postgres]
[dependencies.rust-postgres]
原因是:该软件包的Cargo.toml将软件包名称定义为rust-postgres
,这需要匹配。
但请注意,它还将lib
的名称定义为postgres
。
所以你会extern crate postgres;
(不 extern crate rust-postgres;
)