-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
117 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,57 @@ | ||
module github.com/nknorg/nkn-tunnel | ||
|
||
go 1.20 | ||
go 1.22.0 | ||
|
||
toolchain go1.22.6 | ||
|
||
require ( | ||
github.com/hashicorp/go-multierror v1.1.1 | ||
github.com/imdario/mergo v0.3.15 | ||
github.com/nknorg/ncp-go v1.0.6-0.20230228002512-f4cd1740bebd | ||
github.com/nknorg/nkn-sdk-go v1.4.6-0.20230404044330-ad192f36d07e | ||
github.com/nknorg/nkn-tuna-session v0.2.6-0.20230821020533-3e6e2effd7a3 | ||
github.com/nknorg/nkn/v2 v2.2.0 | ||
github.com/imdario/mergo v0.3.16 | ||
github.com/nknorg/ncp-go v1.0.6 | ||
github.com/nknorg/nkn-sdk-go v1.4.8 | ||
github.com/nknorg/nkn-tuna-session v0.2.6 | ||
github.com/nknorg/nkn/v2 v2.2.1 | ||
github.com/nknorg/nkngomobile v0.0.0-20220615081414-671ad1afdfa9 | ||
github.com/nknorg/tuna v0.0.0-20230818024750-e800a743f680 | ||
github.com/nknorg/tuna v0.1.0 | ||
github.com/patrickmn/go-cache v2.1.0+incompatible | ||
) | ||
|
||
require ( | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/gorilla/websocket v1.5.0 // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/gorilla/websocket v1.5.3 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/itchyny/base58-go v0.2.1 // indirect | ||
github.com/itchyny/base58-go v0.2.2 // indirect | ||
github.com/jpillora/backoff v1.0.0 // indirect | ||
github.com/nknorg/encrypted-stream v1.0.2-0.20230320101720-9891f770de86 // indirect | ||
github.com/oschwald/geoip2-golang v1.4.0 // indirect | ||
github.com/oschwald/maxminddb-golang v1.6.0 // indirect | ||
github.com/oschwald/geoip2-golang v1.11.0 // indirect | ||
github.com/oschwald/maxminddb-golang v1.13.1 // indirect | ||
github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 // indirect | ||
github.com/pborman/uuid v1.2.1 // indirect | ||
github.com/pion/datachannel v1.5.9 // indirect | ||
github.com/pion/dtls/v3 v3.0.4 // indirect | ||
github.com/pion/ice/v4 v4.0.2 // indirect | ||
github.com/pion/interceptor v0.1.37 // indirect | ||
github.com/pion/logging v0.2.2 // indirect | ||
github.com/pion/mdns/v2 v2.0.7 // indirect | ||
github.com/pion/randutil v0.1.0 // indirect | ||
github.com/pion/rtcp v1.2.14 // indirect | ||
github.com/pion/rtp v1.8.9 // indirect | ||
github.com/pion/sctp v1.8.33 // indirect | ||
github.com/pion/sdp/v3 v3.0.9 // indirect | ||
github.com/pion/srtp/v3 v3.0.4 // indirect | ||
github.com/pion/stun/v3 v3.0.0 // indirect | ||
github.com/pion/transport/v3 v3.0.7 // indirect | ||
github.com/pion/turn/v4 v4.0.0 // indirect | ||
github.com/pion/webrtc/v4 v4.0.2 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/rdegges/go-ipify v0.0.0-20150526035502-2d94a6a86c40 // indirect | ||
github.com/wlynxg/anet v0.0.5 // indirect | ||
github.com/xtaci/smux v2.0.1+incompatible // indirect | ||
golang.org/x/crypto v0.17.0 // indirect | ||
golang.org/x/mobile v0.0.0-20230301163155-e0f57694e12c // indirect | ||
golang.org/x/sys v0.15.0 // indirect | ||
google.golang.org/protobuf v1.29.1 // indirect | ||
golang.org/x/crypto v0.29.0 // indirect | ||
golang.org/x/mobile v0.0.0-20241108191957-fa514ef75a0f // indirect | ||
golang.org/x/net v0.31.0 // indirect | ||
golang.org/x/sys v0.27.0 // indirect | ||
golang.org/x/time v0.8.0 // indirect | ||
google.golang.org/protobuf v1.35.2 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters