41 lines
1.2 KiB
Modula-2
41 lines
1.2 KiB
Modula-2
|
|
|
|
module todo
|
|
|
|
go 1.23
|
|
|
|
toolchain go1.23.2
|
|
|
|
require (
|
|
github.com/doug-martin/goqu/v9 v9.19.0
|
|
github.com/google/uuid v1.6.0
|
|
github.com/gorilla/sessions v1.4.0
|
|
github.com/jackc/pgx/v5 v5.7.1
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/labstack/echo/v4 v4.12.0
|
|
github.com/pablor21/echo-etag/v4 v4.0.3
|
|
github.com/shopspring/decimal v1.4.0
|
|
github.com/steebchen/prisma-client-go v0.43.0
|
|
golang.org/x/crypto v0.27.0
|
|
golang.org/x/image v0.21.0
|
|
)
|
|
|
|
require (
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
|
|
github.com/gorilla/securecookie v1.1.2 // 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/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/stretchr/objx v0.5.2 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasttemplate v1.2.2 // indirect
|
|
golang.org/x/net v0.24.0 // indirect
|
|
golang.org/x/sync v0.8.0 // indirect
|
|
golang.org/x/sys v0.25.0 // indirect
|
|
golang.org/x/text v0.19.0 // indirect
|
|
golang.org/x/time v0.5.0 // indirect
|
|
)
|