-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
48 lines (45 loc) · 1.84 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
module github.com/graph-guard/ggproxy
go 1.18
require (
github.com/99designs/gqlgen v0.17.13
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/dustin/go-humanize v1.0.0
github.com/google/go-cmp v0.5.8
github.com/google/uuid v1.3.0
github.com/graph-guard/backend v0.0.0-20220826171348-e3dcd100c82b
github.com/graph-guard/gqlscan v1.0.0
github.com/graph-guard/gqt v0.0.0-20220830090241-b646278952f9
github.com/phuslu/log v1.0.81
github.com/pierrec/xxHash v0.1.5
github.com/stretchr/testify v1.7.2
github.com/tidwall/gjson v1.14.2
github.com/valyala/fasthttp v1.38.0
github.com/vektah/gqlparser/v2 v2.4.6
github.com/yourbasic/bit v0.0.0-20180313074424-45a4409f4082
github.com/zeebo/xxh3 v1.0.2
golang.org/x/exp v0.0.0-20220823124025-807a23277127
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/agnivade/levenshtein v1.1.1 // indirect
github.com/andybalholm/brotli v1.0.4 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/klauspost/compress v1.15.9 // indirect
github.com/klauspost/cpuid/v2 v2.1.0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
github.com/urfave/cli/v2 v2.8.1 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
golang.org/x/sys v0.0.0-20220808155132-1c4a2a72c664 // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/tools v0.1.12 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)