Q:cargo install hyper & cargo install hyper-tls
error: specified package hyper-tls v0.4.1
has no binaries
error: specified package hyper v0.13.5
has no binaries
A:
看上去库里面没有这个二进制版本。印象中有二个网址:
https://lib.rs/ 和creates.io 后面这个打不开,前面的有。上去搜索 hyper。 哦,是有的,使用方法:
cargo add hyper 依赖 hyper = "0.13.5 "
cargo add hyper-tls 依赖 hyper-tls = "0.4.1"
网友评论