Using both git2 and hyper: openssl linked more than once

孤街浪徒 提交于 2019-12-01 06:53:10

The problem is the combination of params and openssl:

[dependencies]
openssl = "0.9.1"
params = "0.5.0"

params 0.5 requires multipart 0.8, with features server, but without default-features = false:

[dependencies.multipart]
features = ["server"]
version = "0.8"

That means multipart 0.8 will also require hyper 0.9. And hyper (using the default features) requires openssl 0.7.

There is a ticket in hyper to switch to a newer openssl version.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!