bedrocktool/go.mod

57 lines
2.3 KiB
Modula-2
Raw Normal View History

2022-09-04 14:53:21 +00:00
module github.com/bedrock-tool/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
2022-09-23 20:11:22 +00:00
//replace github.com/sandertv/gophertunnel => ./gophertunnel
replace github.com/sandertv/gophertunnel => github.com/olebeck/gophertunnel v1.24.8-7
//replace github.com/df-mc/dragonfly => ./dragonfly
replace github.com/df-mc/dragonfly => github.com/olebeck/dragonfly v0.8.5-1
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-09-04 23:43:20 +00:00
github.com/fatih/color v1.13.0
2022-09-04 23:40:55 +00:00
github.com/flytam/filenamify v1.1.1
2022-08-12 02:53:43 +00:00
github.com/go-gl/mathgl v1.0.0
2022-04-03 20:12:21 +00:00
github.com/google/gopacket v1.1.19
github.com/google/subcommands v1.2.0
github.com/miekg/dns v1.1.50
2022-09-09 13:19:17 +00:00
github.com/sanbornm/go-selfupdate v0.0.0-20210106163404-c9b625feac49
2022-09-23 20:11:22 +00:00
github.com/sandertv/gophertunnel v1.24.7
2022-09-05 19:08:57 +00:00
golang.design/x/lockfree v0.0.1
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-09-04 23:40:55 +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-09-23 20:11:22 +00:00
github.com/changkun/lockfree v0.0.1 // 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/golang/protobuf v1.5.2 // indirect
2022-04-16 11:02:32 +00:00
github.com/golang/snappy v0.0.4 // indirect
2022-09-23 20:11:22 +00:00
github.com/google/uuid v1.3.0 // indirect
2022-08-17 18:04:13 +00:00
github.com/jinzhu/copier v0.3.5
2022-09-23 20:11:22 +00:00
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 // indirect
2022-07-29 16:12:06 +00:00
github.com/klauspost/compress v1.15.9 // indirect
2022-09-23 20:11:22 +00:00
github.com/kr/binarydist v0.1.0 // indirect
github.com/mattn/go-colorable v0.1.9 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
2022-04-16 11:02:32 +00:00
github.com/muhammadmuzzammil1998/jsonc v1.0.0 // indirect
2022-09-23 20:11:22 +00:00
github.com/sandertv/go-raknet v1.12.0 // indirect
2022-09-04 14:53:21 +00:00
github.com/sirupsen/logrus v1.9.0
2022-09-09 13:19:17 +00:00
go.uber.org/atomic v1.10.0 // indirect
2022-07-29 16:12:06 +00:00
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect
2022-08-21 16:28:39 +00:00
golang.org/x/image v0.0.0-20220722155232-062f8c9fd539
golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 // indirect
2022-08-13 16:18:40 +00:00
golang.org/x/net v0.0.0-20220812174116-3211cb980234 // indirect
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab // indirect
2022-02-12 22:27:49 +00:00
golang.org/x/text v0.3.7 // indirect
golang.org/x/tools v0.1.10 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
2022-02-12 22:27:49 +00:00
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-09-23 20:11:22 +00:00
gopkg.in/inconshreveable/go-update.v0 v0.0.0-20150814200126-d8b0b1d421aa // indirect
2022-02-12 22:27:49 +00:00
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
)