-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
21 lines (18 loc) · 664 Bytes
/
Copy pathgo.mod
File metadata and controls
21 lines (18 loc) · 664 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module github.com/maxsnegir/rest-api-go
go 1.18
require (
github.com/BurntSushi/toml v1.2.0
github.com/go-ozzo/ozzo-validation v3.6.0+incompatible
github.com/golang-jwt/jwt/v4 v4.4.2
github.com/google/uuid v1.3.0
github.com/gorilla/mux v1.8.0
github.com/lib/pq v1.10.6
github.com/sirupsen/logrus v1.9.0
)
require (
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/go-redis/redis v6.15.9+incompatible // indirect
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
)