bedrocktool/go.mod

43 lines
1.6 KiB
Modula-2
Raw Normal View History

2022-02-27 10:11:56 +00:00
module bedrocktool
2022-02-12 22:27:49 +00:00
2022-08-11 20:22:39 +00:00
go 1.19
2022-02-12 22:27:49 +00:00
require (
2022-08-11 14:15:57 +00:00
github.com/df-mc/dragonfly v0.8.1
2022-07-29 16:12:06 +00:00
github.com/df-mc/goleveldb v1.1.9
2022-04-03 20:12:21 +00:00
github.com/google/gopacket v1.1.19
2022-08-11 14:15:57 +00:00
github.com/sandertv/gophertunnel v1.24.0
2022-08-11 20:22:39 +00:00
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e
2022-08-11 14:15:57 +00:00
golang.org/x/oauth2 v0.0.0-20220808172628-8227340efae7
2022-02-12 22:27:49 +00:00
)
2022-07-29 16:12:06 +00:00
//replace github.com/sandertv/gophertunnel => ./gophertunnel
//replace github.com/df-mc/dragonfly => ./dragonfly
2022-08-11 20:22:39 +00:00
replace github.com/sandertv/gophertunnel => github.com/olebeck/gophertunnel v1.24.2
2022-04-16 11:02:32 +00:00
2022-02-12 22:27:49 +00:00
require (
2022-03-05 11:59:36 +00:00
github.com/brentp/intintmap v0.0.0-20190211203843-30dc0ade9af9 // indirect
2022-08-11 20:22:39 +00:00
github.com/cespare/xxhash v1.1.0 // indirect
2022-04-16 11:02:32 +00:00
github.com/df-mc/atomic v1.10.0 // indirect
2022-02-12 22:27:49 +00:00
github.com/go-gl/mathgl v1.0.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
2022-04-16 11:02:32 +00:00
github.com/golang/snappy v0.0.4 // indirect
2022-02-12 22:27:49 +00:00
github.com/google/uuid v1.3.0 // indirect
2022-07-29 16:12:06 +00:00
github.com/klauspost/compress v1.15.9 // indirect
2022-04-16 11:02:32 +00:00
github.com/muhammadmuzzammil1998/jsonc v1.0.0 // indirect
2022-08-11 20:22:39 +00:00
github.com/pelletier/go-toml v1.9.4 // indirect
github.com/rogpeppe/go-internal v1.3.0 // indirect
2022-07-29 16:12:06 +00:00
github.com/sandertv/go-raknet v1.11.1 // indirect
github.com/sirupsen/logrus v1.9.0 // indirect
2022-02-12 22:27:49 +00:00
go.uber.org/atomic v1.9.0 // indirect
2022-07-29 16:12:06 +00:00
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect
golang.org/x/image v0.0.0-20220722155232-062f8c9fd539 // indirect
2022-08-11 14:15:57 +00:00
golang.org/x/net v0.0.0-20220809184613-07c6da5e1ced // indirect
golang.org/x/sys v0.0.0-20220808155132-1c4a2a72c664 // indirect
2022-02-12 22:27:49 +00:00
golang.org/x/text v0.3.7 // indirect
google.golang.org/appengine v1.6.7 // indirect
2022-07-29 16:12:06 +00:00
google.golang.org/protobuf v1.28.1 // indirect
2022-02-12 22:27:49 +00:00
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
)