-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
24 lines (22 loc) · 845 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
module github.com/shuheishintani/simple-bank
go 1.16
require (
github.com/aead/chacha20poly1305 v0.0.0-20170617001512-233f39982aeb
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/gin-gonic/gin v1.7.1
github.com/go-playground/validator/v10 v10.5.0
github.com/gofrs/uuid v4.0.0+incompatible
github.com/golang/mock v1.4.4
github.com/golang/protobuf v1.5.2 // indirect
github.com/json-iterator/go v1.1.10 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/lib/pq v1.10.0
github.com/o1egl/paseto v1.0.0
github.com/spf13/viper v1.7.1
github.com/stretchr/testify v1.7.0
github.com/ugorji/go v1.2.5 // indirect
golang.org/x/crypto v0.0.0-20210415154028-4f45737414dc
golang.org/x/sys v0.0.0-20210415045647-66c3f260301c // indirect
golang.org/x/text v0.3.6 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)