-
-
Notifications
You must be signed in to change notification settings - Fork 224
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
4 changed files
with
58 additions
and
77 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
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
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,59 +1,56 @@ | ||
module github.com/TimothyYe/godns | ||
|
||
require ( | ||
github.com/bitly/go-simplejson v0.5.0 | ||
github.com/bwmarrin/discordgo v0.27.1 | ||
github.com/fatih/color v1.15.0 | ||
github.com/google/uuid v1.5.0 | ||
github.com/bitly/go-simplejson v0.5.1 | ||
github.com/bwmarrin/discordgo v0.28.1 | ||
github.com/fatih/color v1.18.0 | ||
github.com/google/uuid v1.6.0 | ||
github.com/json-iterator/go v1.1.12 | ||
github.com/linode/linodego v1.16.1 | ||
github.com/miekg/dns v1.1.53 | ||
github.com/sirupsen/logrus v1.9.0 | ||
golang.org/x/net v0.23.0 | ||
golang.org/x/oauth2 v0.7.0 | ||
github.com/miekg/dns v1.1.62 | ||
github.com/sirupsen/logrus v1.9.3 | ||
golang.org/x/net v0.31.0 | ||
golang.org/x/oauth2 v0.24.0 | ||
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) | ||
|
||
require ( | ||
github.com/fsnotify/fsnotify v1.7.0 | ||
github.com/fsnotify/fsnotify v1.8.0 | ||
github.com/gofiber/fiber/v2 v2.52.5 | ||
) | ||
|
||
require ( | ||
github.com/andybalholm/brotli v1.0.5 // indirect | ||
github.com/go-routeros/routeros/v3 v3.0.0 // indirect | ||
github.com/klauspost/compress v1.17.0 // indirect | ||
github.com/mattn/go-runewidth v0.0.15 // indirect | ||
github.com/rivo/uniseg v0.2.0 // indirect | ||
github.com/stretchr/testify v1.9.0 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
github.com/valyala/fasthttp v1.51.0 // indirect | ||
github.com/valyala/tcplisten v1.0.0 // indirect | ||
golang.org/x/sync v0.9.0 // indirect | ||
) | ||
|
||
require ( | ||
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect | ||
github.com/go-resty/resty/v2 v2.7.0 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/gorilla/websocket v1.5.0 // indirect | ||
github.com/kr/pretty v0.3.1 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/ovh/go-ovh v1.4.1 | ||
golang.org/x/crypto v0.21.0 // indirect | ||
golang.org/x/mod v0.10.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/tools v0.8.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.33.0 // indirect | ||
golang.org/x/crypto v0.29.0 // indirect | ||
golang.org/x/mod v0.18.0 // indirect | ||
golang.org/x/sys v0.27.0 // indirect | ||
golang.org/x/text v0.20.0 // indirect | ||
golang.org/x/tools v0.22.0 // indirect | ||
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
) | ||
|
||
go 1.21 | ||
go 1.23 | ||
|
||
toolchain go1.21.5 | ||
toolchain go1.23.3 |
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