forked from dosco/graphjin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
78 lines (76 loc) · 3.35 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
module github.com/dosco/graphjin
require (
cuelang.org/go v0.4.3
github.com/Azure/azure-sdk-for-go v65.0.0+incompatible // indirect
github.com/Azure/go-autorest/autorest v0.11.27 // indirect
github.com/Azure/go-autorest/autorest/adal v0.9.20 // indirect
github.com/ProtonMail/go-crypto v0.0.0-20220517143526-88bb52951d5b // indirect
github.com/adjust/gorails v0.0.0-20171013043634-2786ed0c03d3
github.com/armon/go-metrics v0.4.0 // indirect
github.com/avast/retry-go v3.0.0+incompatible
github.com/bradfitz/gomemcache v0.0.0-20220106215444-fb4bf637b56d
github.com/brianvoe/gofakeit/v6 v6.16.0
github.com/chirino/graphql v0.0.0-20220710191258-f420c1213e22
github.com/docker/distribution v2.8.1+incompatible // indirect
github.com/dop251/goja v0.0.0-20220722151623-4765a9872229
github.com/fsnotify/fsnotify v1.5.4
github.com/go-chi/chi v1.5.4
github.com/go-http-utils/headers v0.0.0-20181008091004-fed159eddc2a
github.com/go-pkgz/expirable-cache v0.1.0
github.com/go-playground/validator/v10 v10.11.0
github.com/go-resty/resty/v2 v2.7.0
github.com/go-sql-driver/mysql v1.6.0
github.com/go-test/deep v1.0.8 // indirect
github.com/gobuffalo/flect v0.2.5
github.com/gofrs/uuid v4.2.0+incompatible // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible
github.com/golang-jwt/jwt/v4 v4.4.2 // indirect
github.com/golang/glog v1.0.0 // indirect
github.com/gomodule/redigo v1.8.9
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
github.com/gorilla/websocket v1.5.0
github.com/gosimple/slug v1.12.0
github.com/hashicorp/go-hclog v1.2.1 // indirect
github.com/hashicorp/go-plugin v1.4.4 // indirect
github.com/hashicorp/go-retryablehttp v0.7.1 // indirect
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.6 // indirect
github.com/hashicorp/go-uuid v1.0.3 // indirect
github.com/hashicorp/go-version v1.5.0 // indirect
github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d
github.com/hashicorp/vault/api v1.6.0 // indirect
github.com/jackc/pgx/v4 v4.16.1
github.com/jhump/protoreflect v1.12.0 // indirect
github.com/jvatic/goja-babel v0.0.0-20220530111339-7d04743cb6ab
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0
github.com/klauspost/compress v1.15.6
github.com/lestrrat-go/jwx v1.2.25
github.com/mitchellh/hashstructure/v2 v2.0.2
github.com/mitchellh/mapstructure v1.5.0
github.com/orlangure/gnomock v0.21.0
github.com/pkg/errors v0.9.1
github.com/rs/cors v1.8.2
github.com/rs/xid v1.4.0
github.com/shopspring/decimal v1.3.1 // indirect
github.com/spf13/afero v1.8.2
github.com/spf13/cobra v1.4.0
github.com/spf13/viper v1.12.0
github.com/stretchr/testify v1.8.0
github.com/subosito/gotenv v1.4.0 // indirect
go.mozilla.org/sops/v3 v3.7.3
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.33.0
go.opentelemetry.io/otel v1.8.0
go.opentelemetry.io/otel/sdk v1.8.0
go.opentelemetry.io/otel/trace v1.8.0
go.uber.org/multierr v1.8.0 // indirect
go.uber.org/zap v1.21.0
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f
golang.org/x/term v0.0.0-20220526004731-065cf7ba2467 // indirect
golang.org/x/text v0.3.7
golang.org/x/time v0.0.0-20220411224347-583f2d630306
google.golang.org/api v0.83.0 // indirect
google.golang.org/genproto v0.0.0-20220607223854-30acc4cbd2aa // indirect
gopkg.in/ini.v1 v1.66.6 // indirect
gopkg.in/yaml.v3 v3.0.1
)
go 1.16