diff options
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 22 |
1 files changed, 12 insertions, 10 deletions
@@ -3,8 +3,8 @@ module 0xacab.org/leap/bitmask-vpn go 1.17 require ( - 0xacab.org/leap/shapeshifter v0.0.0-20191029173606-85d3e8ac43e2 - git.torproject.org/pluggable-transports/goptlib.git v1.1.0 + 0xacab.org/leap/obfsvpn v0.0.0-20220311174134-724b17ec5b25 + git.torproject.org/pluggable-transports/goptlib.git v1.2.0 git.torproject.org/pluggable-transports/snowflake.git v1.1.0 github.com/ProtonMail/go-autostart v0.0.0-20181114175602-c5272053443a github.com/apparentlymart/go-openvpn-mgmt v0.0.0-20161009010951-9a305aecd7f2 @@ -15,15 +15,11 @@ require ( 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 + golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5 ) 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/dchest/siphash v1.2.2 // 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 @@ -52,9 +48,15 @@ require ( 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 + gitlab.com/yawning/obfs4.git v0.0.0-20220204003609-77af0cba934d // indirect + golang.org/x/crypto v0.0.0-20220307211146-efcb8507fb70 // indirect golang.org/x/mod v0.3.0 // indirect - golang.org/x/net v0.0.0-20210525063256-abc453219eb5 // indirect + golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect golang.org/x/tools v0.0.0-20200808161706-5bf02b21f123 // indirect golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect ) + +// The changes to obfs4 in the next commit (393aca8) are not backwards +// compatible, contrary to what the documentation says. Temporarily use an older +// version until the gateways are updated. +replace gitlab.com/yawning/obfs4.git => gitlab.com/yawning/obfs4.git v0.0.0-20210511220700-e330d1b7024b |