-
Notifications
You must be signed in to change notification settings - Fork 2
/
go.mod
40 lines (37 loc) · 1.32 KB
/
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
32
33
34
35
36
37
38
39
40
module github.com/jesseokeya/go-rest-api-template
go 1.19
require (
github.com/burntsushi/toml v0.3.1
github.com/go-chi/chi v1.5.1
github.com/go-chi/cors v1.2.0
github.com/go-chi/jwtauth v1.2.0
github.com/go-chi/render v1.0.1
github.com/go-oauth2/oauth2/v4 v4.3.0
github.com/goware/emailx v0.2.0
github.com/kylelemons/go-gypsy v1.0.0
github.com/lestrrat-go/jwx v1.1.7
github.com/lib/pq v1.9.0
github.com/pkg/errors v0.9.1
github.com/pressly/goose v2.7.0+incompatible
github.com/robfig/cron/v3 v3.0.1
github.com/rs/zerolog v1.21.0
github.com/stretchr/testify v1.7.1
github.com/upper/db/v4 v4.1.0
github.com/zenazn/goji v1.0.1
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v3 v3.0.0 // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
github.com/goccy/go-json v0.4.8 // indirect
github.com/google/uuid v1.1.1 // indirect
github.com/lestrrat-go/backoff/v2 v2.0.7 // indirect
github.com/lestrrat-go/blackmagic v1.0.0 // indirect
github.com/lestrrat-go/httpcc v1.0.0 // indirect
github.com/lestrrat-go/iter v1.0.1 // indirect
github.com/lestrrat-go/option v1.0.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.3.0 // indirect
gopkg.in/yaml.v3 v3.0.0 // indirect
)