You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 9, 2020. It is now read-only.
Dep was officially deprecated earlier this year, and the proposal to archive this repository was accepted. As such, I'm closing outstanding issues before archiving the repository. For any further comments, please use the proposal thread on the Go issue tracker. Thanks!
How does
dep
deal withvendor
dirs in libraries that being added viadep ensure
?Here is what I ran into:
github.com/influxdata/telegraf
(which usesdep
)github.com/docker/libnetwork
as a dependency usingdep ensure ...
dep
added thedocker/libnetwork
library to the Gopkg.toml as well as its dependency onvishvananda/netlink @ 1.0.0
docker/libnetwork
only works with thevishvananda/netlink
that is vendored in its vendor dir (see ipvs.go:94:32: cannot use &tv (type *syscall.Timeval) as type *unix.Timeval in argument to sock.SetSendTimeout moby/libnetwork#2110)dep
needs to understand this somehow, or I need to getdocker/libnetwork
to stop vendoring its copy ofvishvananda/netlink
Is there a way around this situation?
The text was updated successfully, but these errors were encountered: