-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgo.mod
31 lines (28 loc) · 893 Bytes
/
go.mod
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
28
29
30
31
module gopherbin
go 1.21
require (
github.com/BurntSushi/toml v1.4.0
github.com/NYTimes/gziphandler v1.1.1
github.com/cespare/xxhash v1.1.0
github.com/go-sql-driver/mysql v1.8.1
github.com/golang-jwt/jwt v3.2.2+incompatible
github.com/gorilla/handlers v1.5.2
github.com/gorilla/mux v1.8.1
github.com/juju/loggo v1.0.0
github.com/nbutton23/zxcvbn-go v0.0.0-20210217022336-fa2cb2858354
github.com/pkg/errors v0.9.1
golang.org/x/crypto v0.31.0
gorm.io/datatypes v1.2.5
gorm.io/driver/mysql v1.5.7
gorm.io/driver/sqlite v1.5.7
gorm.io/gorm v1.25.12
)
require (
filippo.io/edwards25519 v1.1.0 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/mattn/go-sqlite3 v1.14.24 // indirect
golang.org/x/text v0.21.0 // indirect
)