diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2019-08-16 12:55:10 +0200 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2019-08-16 15:50:28 +0200 |
commit | ec4974e7660776e8ab2883b109bfa3f96b4f5317 (patch) | |
tree | 6c6ae93cab7e3a0ff6ebb7ec07e3ef8757e5272f /go.mod | |
parent | f4ab1b0463e902f23224c37f1e217241084681df (diff) |
[pkg] need to vendorize allendang w32 lib
we use go mod edit -replace
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 31 |
1 files changed, 16 insertions, 15 deletions
@@ -2,28 +2,29 @@ module 0xacab.org/leap/bitmask-vpn require ( 0xacab.org/leap/go-dialog v0.0.0-20181123042829-0ee8438431a0 - github.com/AllenDang/w32 v0.0.0-20180428130237-ad0a36d80adc + github.com/AllenDang/w32 v0.0.0-20180428130237-ad0a36d80adc // indirect github.com/ProtonMail/go-autostart v0.0.0-20181114175602-c5272053443a github.com/apparentlymart/go-openvpn-mgmt v0.0.0-20161009010951-9a305aecd7f2 - github.com/cratonica/2goarray v0.0.0-20190331194516-514510793eaa // indirect - github.com/getlantern/context v0.0.0-20190109183933-c447772a6520 - github.com/getlantern/errors v0.0.0-20180829142810-e24b7f4ff7c7 - github.com/getlantern/golog v0.0.0-20170508214112-cca714f7feb5 - github.com/getlantern/hex v0.0.0-20160523043825-083fba3033ad - github.com/getlantern/hidden v0.0.0-20160523043807-d52a649ab33a - github.com/getlantern/ops v0.0.0-20170904182230-37353306c908 + github.com/getlantern/context v0.0.0-20190109183933-c447772a6520 // indirect + github.com/getlantern/errors v0.0.0-20180829142810-e24b7f4ff7c7 // indirect + github.com/getlantern/golog v0.0.0-20170508214112-cca714f7feb5 // indirect + github.com/getlantern/hex v0.0.0-20160523043825-083fba3033ad // indirect + github.com/getlantern/hidden v0.0.0-20160523043807-d52a649ab33a // indirect + github.com/getlantern/ops v0.0.0-20170904182230-37353306c908 // indirect github.com/getlantern/systray v0.0.0-20190626064521-f2fa635d0474 - github.com/go-stack/stack v1.8.0 - github.com/golang/text v0.3.0 // indirect - github.com/gotk3/gotk3 v0.0.0-20190108052711-d09d58ef3476 + github.com/go-stack/stack v1.8.0 // indirect + github.com/gotk3/gotk3 v0.0.0-20190108052711-d09d58ef3476 // indirect github.com/jmshal/go-locale v0.0.0-20161107082030-4f541412d67a + github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 // indirect github.com/mitchellh/go-ps v0.0.0-20170309133038-4fdf99ab2936 - github.com/oxtoacart/bpool v0.0.0-20150712133111-4e1c5567d7c2 - github.com/sevlyar/go-daemon v0.1.5 // indirect + github.com/oxtoacart/bpool v0.0.0-20150712133111-4e1c5567d7c2 // indirect + github.com/sevlyar/go-daemon v0.1.5 github.com/skratchdot/open-golang v0.0.0-20190104022628-a2dfa6d0dab6 - golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4 // indirect - golang.org/x/net v0.0.0-20190724013045-ca1201d0de80 // indirect + github.com/sqweek/dialog v0.0.0-20190728103509-6254ed5b0d3c // indirect + github.com/stretchr/testify v1.4.0 // indirect golang.org/x/sys v0.0.0-20190804053845-51ab0e2deafa // indirect golang.org/x/text v0.3.2 golang.org/x/tools v0.0.0-20190806143415-35ef2682e516 // indirect ) + +replace github.com/AllenDang/w32 => ./packages/w32 |