-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[-] Transferred ownership to Naughty Gopher
[minor] Refactor to change non standard field names [minor] upgraded all dependencies [-] ran `go mod tidy`
- Loading branch information
1 parent
b3d6902
commit 74f3077
Showing
8 changed files
with
197 additions
and
193 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
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,16 +1,33 @@ | ||
module github.com/bnkamalesh/verifier | ||
module github.com/naughtygopher/verifier | ||
|
||
go 1.13 | ||
go 1.23.1 | ||
|
||
require ( | ||
github.com/Masterminds/squirrel v1.1.0 | ||
github.com/aws/aws-sdk-go v1.25.11 | ||
github.com/Masterminds/squirrel v1.5.4 | ||
github.com/aws/aws-sdk-go v1.55.5 | ||
github.com/fatih/structs v1.1.0 | ||
github.com/go-redis/redis v6.15.6+incompatible | ||
github.com/go-sql-driver/mysql v1.4.1 // indirect | ||
github.com/jackc/pgx/v4 v4.1.2 | ||
github.com/mattn/go-sqlite3 v1.11.0 // indirect | ||
github.com/onsi/ginkgo v1.10.2 // indirect | ||
github.com/onsi/gomega v1.7.0 // indirect | ||
github.com/vmihailenco/msgpack/v4 v4.2.1 | ||
github.com/go-redis/redis v6.15.9+incompatible | ||
github.com/jackc/pgx/v5 v5.7.1 | ||
github.com/vmihailenco/msgpack/v4 v4.3.13 | ||
) | ||
|
||
require ( | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/jackc/pgpassfile v1.0.0 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect | ||
github.com/jackc/puddle/v2 v2.2.2 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect | ||
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect | ||
github.com/onsi/ginkgo v1.16.5 // indirect | ||
github.com/onsi/gomega v1.34.2 // indirect | ||
github.com/rogpeppe/go-internal v1.13.1 // indirect | ||
github.com/vmihailenco/tagparser v0.1.2 // indirect | ||
golang.org/x/crypto v0.27.0 // indirect | ||
golang.org/x/net v0.29.0 // indirect | ||
golang.org/x/sync v0.8.0 // indirect | ||
golang.org/x/text v0.18.0 // indirect | ||
google.golang.org/appengine v1.6.8 // indirect | ||
google.golang.org/protobuf v1.34.2 // indirect | ||
) |
Oops, something went wrong.