-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
27 lines (23 loc) · 798 Bytes
/
go.mod
File metadata and controls
27 lines (23 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
module github.com/csvitor-dev/go.dev
go 1.24.0
require github.com/gorilla/mux v1.8.1 // direct
require (
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/fatih/color v1.18.0
github.com/go-sql-driver/mysql v1.8.1
github.com/golang-migrate/migrate/v4 v4.18.3
github.com/google/uuid v1.6.0
github.com/joho/godotenv v1.5.1
github.com/resend/resend-go/v2 v2.23.0
golang.org/x/crypto v0.40.0
)
require (
filippo.io/edwards25519 v1.1.0 // indirect
github.com/gorilla/securecookie v1.1.2 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
go.uber.org/atomic v1.7.0 // indirect
golang.org/x/sys v0.34.0 // indirect
)