-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
53 lines (48 loc) · 1.8 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
41
42
43
44
45
46
47
48
49
50
51
52
53
module github.com/minskylab/hasura-auth-webhook
go 1.18
require (
entgo.io/ent v0.10.2-0.20220502113020-4ac82f5bb3f0
github.com/gofiber/fiber/v2 v2.35.0
github.com/golang-jwt/jwt v3.2.2+incompatible
github.com/lib/pq v1.10.6
github.com/mattn/go-sqlite3 v1.14.14
github.com/pkg/errors v0.9.1
github.com/satori/go.uuid v1.2.0
github.com/sirupsen/logrus v1.8.1
github.com/xo/dburl v0.11.0
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d
golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
)
require (
github.com/andybalholm/brotli v1.0.4 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/klauspost/compress v1.15.7 // indirect
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.38.0 // indirect
github.com/valyala/tcplisten v1.0.0 // indirect
)
require (
ariga.io/atlas v0.4.2 // indirect
github.com/agext/levenshtein v1.2.3 // indirect
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
github.com/go-openapi/inflect v0.19.0 // indirect
github.com/google/go-cmp v0.5.8 // indirect
github.com/gookit/goutil v0.5.5 // indirect
github.com/hashicorp/hcl/v2 v2.13.0 // indirect
github.com/imdario/mergo v0.3.13 // indirect
github.com/kr/pretty v0.2.1 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
github.com/zclconf/go-cty v1.10.0 // indirect
golang.org/x/mod v0.5.1 // indirect
golang.org/x/net v0.0.0-20220706163947-c90051bbdb60 // indirect
golang.org/x/text v0.3.7 // indirect
)
require (
github.com/go-resty/resty/v2 v2.7.0
github.com/gookit/config/v2 v2.1.2
github.com/mitchellh/mapstructure v1.5.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)