-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from gewv-tu-dresden/go_dependencies
update go dependencies
- Loading branch information
Showing
6 changed files
with
295 additions
and
7 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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
module github.com/iegomez/mosquitto-go-auth | ||
|
||
go 1.22 | ||
|
||
toolchain go1.22.4 | ||
|
||
require ( | ||
github.com/go-redis/redis/v8 v8.11.5 | ||
github.com/go-sql-driver/mysql v1.8.1 | ||
github.com/golang-jwt/jwt v3.2.2+incompatible | ||
github.com/golang/protobuf v1.5.4 | ||
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 | ||
github.com/jmoiron/sqlx v1.4.0 | ||
github.com/lib/pq v1.10.9 | ||
github.com/mattn/go-sqlite3 v1.14.22 | ||
github.com/patrickmn/go-cache v2.1.0+incompatible | ||
github.com/pkg/errors v0.9.1 | ||
github.com/robertkrimen/otto v0.4.0 | ||
github.com/sirupsen/logrus v1.9.3 | ||
github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a | ||
github.com/stretchr/testify v1.8.1 | ||
go.mongodb.org/mongo-driver v1.15.1 | ||
golang.org/x/crypto v0.24.0 | ||
google.golang.org/grpc v1.64.0 | ||
) | ||
|
||
require ( | ||
filippo.io/edwards25519 v1.1.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/gopherjs/gopherjs v0.0.0-20190328170749-bb2674552d8f // indirect | ||
github.com/jtolds/gls v4.20.0+incompatible // indirect | ||
github.com/klauspost/compress v1.17.9 // indirect | ||
github.com/montanaflynn/stats v0.7.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/smartystreets/assertions v0.0.0-20190401211740-f487f9de1cd3 // indirect | ||
github.com/xdg-go/pbkdf2 v1.0.0 // indirect | ||
github.com/xdg-go/scram v1.1.2 // indirect | ||
github.com/xdg-go/stringprep v1.0.4 // indirect | ||
github.com/youmark/pkcs8 v0.0.0-20240424034433-3c2c7870ae76 // indirect | ||
golang.org/x/net v0.26.0 // indirect | ||
golang.org/x/sync v0.7.0 // indirect | ||
golang.org/x/sys v0.21.0 // indirect | ||
golang.org/x/text v0.16.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240624140628-dc46fd24d27d // indirect | ||
google.golang.org/protobuf v1.34.2 // indirect | ||
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect | ||
gopkg.in/sourcemap.v1 v1.0.5 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.