-
Notifications
You must be signed in to change notification settings - Fork 1
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 #7 from eexit/update_deps
chore: update dependencies and bump Go version to 1.20
- Loading branch information
Showing
15 changed files
with
705 additions
and
61 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
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,18 +1,25 @@ | ||
module github.com/eexit/http2smtp | ||
|
||
go 1.16 | ||
go 1.20 | ||
|
||
require ( | ||
github.com/aws/aws-lambda-go v1.24.0 | ||
github.com/awslabs/aws-lambda-go-api-proxy v0.10.0 | ||
github.com/go-playground/validator/v10 v10.6.1 | ||
github.com/aws/aws-lambda-go v1.39.1 | ||
github.com/awslabs/aws-lambda-go-api-proxy v0.14.0 | ||
github.com/go-playground/validator/v10 v10.12.0 | ||
github.com/gorilla/mux v1.8.0 | ||
github.com/justinas/alice v1.2.0 | ||
github.com/kelseyhightower/envconfig v1.4.0 | ||
github.com/leodido/go-urn v1.2.1 // indirect | ||
github.com/rs/xid v1.3.0 // indirect | ||
github.com/rs/zerolog v1.22.0 | ||
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a // indirect | ||
golang.org/x/sys v0.0.0-20210601080250-7ecdf8ef093b // indirect | ||
golang.org/x/text v0.3.6 // indirect | ||
github.com/rs/zerolog v1.29.0 | ||
) | ||
|
||
require ( | ||
github.com/go-playground/locales v0.14.1 // indirect | ||
github.com/go-playground/universal-translator v0.18.1 // indirect | ||
github.com/leodido/go-urn v1.2.3 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.18 // indirect | ||
github.com/rs/xid v1.4.0 // indirect | ||
golang.org/x/crypto v0.8.0 // indirect | ||
golang.org/x/sys v0.7.0 // indirect | ||
golang.org/x/text v0.9.0 // indirect | ||
) |
Oops, something went wrong.