forked from Sandertv/gophertunnel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
50 lines (46 loc) · 1.83 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
module github.com/sandertv/gophertunnel
go 1.23.0
require (
github.com/coder/websocket v1.8.12
github.com/df-mc/go-nethernet v0.0.0-20240902102242-528de5c8686f
github.com/df-mc/go-playfab v0.0.0-20240902102459-2f8b5cd02173
github.com/df-mc/go-xsapi v0.0.0-20240902102602-e7c4bffb955f
github.com/go-gl/mathgl v1.1.0
github.com/go-jose/go-jose/v3 v3.0.3
github.com/golang/snappy v0.0.4
github.com/google/uuid v1.6.0
github.com/klauspost/compress v1.17.9
github.com/muhammadmuzzammil1998/jsonc v1.0.0
github.com/pelletier/go-toml v1.9.5
github.com/pion/logging v0.2.2
github.com/pion/webrtc/v4 v4.0.0-beta.29.0.20240826201411-3147b45f9db5
github.com/sandertv/go-raknet v1.14.1
golang.org/x/net v0.27.0
golang.org/x/oauth2 v0.21.0
golang.org/x/text v0.17.0
)
require (
github.com/pion/datachannel v1.5.9 // indirect
github.com/pion/dtls/v3 v3.0.2 // indirect
github.com/pion/ice/v4 v4.0.1 // indirect
github.com/pion/interceptor v0.1.30 // 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.3 // 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/wlynxg/anet v0.0.3 // indirect
golang.org/x/crypto v0.26.0 // indirect
golang.org/x/image v0.17.0 // indirect
golang.org/x/sys v0.24.0 // indirect
)
replace (
github.com/df-mc/go-nethernet => github.com/lactyy/go-nethernet v0.0.0-20240918151603-8274a4680204
github.com/df-mc/go-playfab => github.com/lactyy/go-playfab v0.0.0-20240911042657-037f6afe426f
github.com/df-mc/go-xsapi => github.com/lactyy/go-xsapi v0.0.0-20240911052022-1b9dffef64ab
)