udemy-go-web-1/go.mod

40 lines
1.1 KiB
Modula-2
Raw Permalink Normal View History

2024-06-26 15:30:39 +00:00
module go-udemy-web-1
go 1.21.0
2024-06-28 10:59:47 +00:00
2024-07-29 20:09:06 +00:00
// Template: github.com/CloudyKit/jet --> Check this later
2024-07-07 20:50:46 +00:00
//
// ORM packages:
// upper/db https://github.com/upper/db
// gorm.io/gorm
2024-07-29 20:09:06 +00:00
// TODO Checkout sqlc and sqlx
2024-07-01 12:34:15 +00:00
2024-07-10 09:30:04 +00:00
// TODO Use default http package to rewrite the project with go 1.22.1
2024-06-28 11:33:43 +00:00
require github.com/go-chi/chi/v5 v5.0.14
require github.com/justinas/nosurf v1.1.1
2024-06-28 13:41:25 +00:00
require github.com/alexedwards/scs/v2 v2.8.0
2024-07-06 20:26:41 +00:00
require (
2024-07-29 19:54:37 +00:00
github.com/alexedwards/scs/redisstore v0.0.0-20240316134038-7e11d57e8885
2024-07-06 20:26:41 +00:00
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2
2024-07-29 19:54:37 +00:00
github.com/gomodule/redigo v1.9.2
2024-07-06 20:26:41 +00:00
github.com/jackc/pgconn v1.14.3
github.com/jackc/pgx/v5 v5.6.0
github.com/xhit/go-simple-mail v2.2.2+incompatible
2024-07-29 19:54:37 +00:00
golang.org/x/crypto v0.25.0
2024-07-06 20:26:41 +00:00
)
require (
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgproto3/v2 v2.3.3 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/puddle/v2 v2.2.1 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/text v0.16.0 // indirect
)