diff options
author | Sam Whited <sam@samwhited.com> | 2022-03-11 13:50:17 -0500 |
---|---|---|
committer | Sam Whited <sam@samwhited.com> | 2022-03-15 09:32:05 -0400 |
commit | a0f8afb97d2218b4f987779c5b2bb247ead1c66e (patch) | |
tree | fcadcf56c6de186d30c9a9a09f5c045c9f2ccde7 /go.mod | |
parent | 2d95d4d069124df4a4e2473fc23ad3feed19905d (diff) |
Remove dependency on statik and use go:embed
This removes a dependency by using the built-in go:embed functionality
introduce in Go 1.16 instead of statik for embedding files.
This means that Go 1.16+ would now be required to build the VPN.
Signed-off-by: Sam Whited <sam@samwhited.com>
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 50 |
1 files changed, 42 insertions, 8 deletions
@@ -1,26 +1,60 @@ module 0xacab.org/leap/bitmask-vpn -go 1.14 +go 1.17 require ( 0xacab.org/leap/shapeshifter v0.0.0-20191029173606-85d3e8ac43e2 git.torproject.org/pluggable-transports/goptlib.git v1.1.0 git.torproject.org/pluggable-transports/snowflake.git v1.1.0 - github.com/OperatorFoundation/obfs4 v0.0.0-20161108041644-17f2cb99c264 // indirect - github.com/OperatorFoundation/shapeshifter-ipc v0.0.0-20170814234159-11746ba927e0 // indirect - github.com/OperatorFoundation/shapeshifter-transports v0.0.0-20191101030951-7a751b0500f4 // indirect github.com/ProtonMail/go-autostart v0.0.0-20181114175602-c5272053443a - github.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412 // indirect github.com/apparentlymart/go-openvpn-mgmt v0.0.0-20161009010951-9a305aecd7f2 github.com/cretz/bine v0.2.0 - github.com/dchest/siphash v1.2.1 // indirect - github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 // indirect github.com/keybase/go-ps v0.0.0-20190827175125-91aafc93ba19 github.com/pion/webrtc/v3 v3.0.15 - github.com/rakyll/statik v0.1.7 github.com/sevlyar/go-daemon v0.1.5 github.com/smartystreets/goconvey v1.6.4 github.com/xtaci/kcp-go/v5 v5.6.1 github.com/xtaci/smux v1.5.15 golang.org/x/sys v0.0.0-20210423082822-04245dca01da ) + +require ( + github.com/OperatorFoundation/obfs4 v0.0.0-20161108041644-17f2cb99c264 // indirect + github.com/OperatorFoundation/shapeshifter-ipc v0.0.0-20170814234159-11746ba927e0 // indirect + github.com/OperatorFoundation/shapeshifter-transports v0.0.0-20191101030951-7a751b0500f4 // indirect + github.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412 // indirect + github.com/dchest/siphash v1.2.1 // indirect + github.com/google/uuid v1.2.0 // indirect + github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 // indirect + github.com/jtolds/gls v4.20.0+incompatible // indirect + github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 // indirect + github.com/klauspost/cpuid v1.3.1 // indirect + github.com/klauspost/reedsolomon v1.9.9 // indirect + github.com/mmcloughlin/avo v0.0.0-20200803215136-443f81d77104 // indirect + github.com/pion/datachannel v1.4.21 // indirect + github.com/pion/dtls/v2 v2.0.8 // indirect + github.com/pion/ice/v2 v2.0.15 // indirect + github.com/pion/interceptor v0.0.10 // indirect + github.com/pion/logging v0.2.2 // indirect + github.com/pion/mdns v0.0.4 // indirect + github.com/pion/randutil v0.1.0 // indirect + github.com/pion/rtcp v1.2.6 // indirect + github.com/pion/rtp v1.6.2 // indirect + github.com/pion/sctp v1.7.11 // indirect + github.com/pion/sdp/v3 v3.0.4 // indirect + github.com/pion/srtp/v2 v2.0.2 // indirect + github.com/pion/stun v0.3.5 // indirect + github.com/pion/transport v0.12.3 // indirect + github.com/pion/turn/v2 v2.0.5 // indirect + github.com/pion/udp v0.1.0 // indirect + github.com/pkg/errors v0.9.1 // indirect + github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d // indirect + github.com/templexxx/cpu v0.0.7 // indirect + github.com/templexxx/xorsimd v0.4.1 // indirect + github.com/tjfoc/gmsm v1.3.2 // indirect + golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a // indirect + golang.org/x/mod v0.3.0 // indirect + golang.org/x/net v0.0.0-20210525063256-abc453219eb5 // indirect + golang.org/x/tools v0.0.0-20200808161706-5bf02b21f123 // indirect + golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect +) |