go-project-template/go.mod

39 lines
1.3 KiB
Modula-2
Raw Normal View History

2024-05-05 22:10:32 +00:00
module git.janky.solutions/finn/go-project-template
go 1.23
toolchain go1.23.1
2024-05-05 22:10:32 +00:00
require (
2024-07-25 05:13:23 +00:00
github.com/coreos/go-oidc/v3 v3.11.0
github.com/google/uuid v1.6.0
github.com/gorilla/sessions v1.4.0
github.com/jackc/pgx/v5 v5.7.0
2024-05-05 22:10:32 +00:00
github.com/labstack/echo/v4 v4.12.0
github.com/pressly/goose/v3 v3.22.0
2024-05-05 22:10:32 +00:00
github.com/sirupsen/logrus v1.9.3
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0
golang.org/x/oauth2 v0.23.0
2024-05-05 22:10:32 +00:00
)
require (
2024-07-25 05:13:23 +00:00
github.com/go-jose/go-jose/v4 v4.0.2 // indirect
github.com/gorilla/securecookie v1.1.2 // indirect
2024-05-05 22:10:32 +00:00
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
2024-05-05 22:10:32 +00:00
github.com/jackc/puddle/v2 v2.2.1 // indirect
github.com/labstack/gommon v0.4.2 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mfridman/interpolate v0.0.2 // indirect
github.com/sethvargo/go-retry v0.3.0 // indirect
2024-05-05 22:10:32 +00:00
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
go.uber.org/multierr v1.11.0 // indirect
2024-07-25 05:13:23 +00:00
golang.org/x/crypto v0.25.0 // indirect
golang.org/x/net v0.27.0 // indirect
golang.org/x/sync v0.8.0 // indirect
2024-07-25 05:13:23 +00:00
golang.org/x/sys v0.22.0 // indirect
golang.org/x/text v0.16.0 // indirect
2024-05-05 22:10:32 +00:00
)