forked from ory/kratos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
90 lines (84 loc) · 3.7 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
79
80
81
82
83
84
85
86
87
88
89
90
module github.com/ory/kratos
go 1.15
// See https://github.com/markbates/pkger/pull/112
replace github.com/markbates/pkger => github.com/falafeljan/pkger v0.17.1-0.20200722132747-95726f5b9b9b
replace gopkg.in/DataDog/dd-trace-go.v1 => gopkg.in/DataDog/dd-trace-go.v1 v1.27.1-0.20201005154917-54b73b3e126a
// Use the internal httpclient which can be generated in this codebase but mark it as the
// official SDK, allowing for the ORY CLI to consume ORY Kratos' CLI commands.
replace github.com/ory/kratos-client-go => ./internal/httpclient
// Use the internal name for tablename generation
replace github.com/ory/kratos/corp => ./corp
require (
github.com/HdrHistogram/hdrhistogram-go v1.0.1 // indirect
github.com/Masterminds/sprig/v3 v3.0.0
github.com/arbovm/levenshtein v0.0.0-20160628152529-48b4e1c0c4d0
github.com/bwmarrin/discordgo v0.22.0
github.com/bxcodec/faker/v3 v3.3.1
github.com/cenkalti/backoff v2.2.1+incompatible
github.com/coreos/go-oidc v2.2.1+incompatible
github.com/davidrjonas/semver-cli v0.0.0-20190116233701-ee19a9a0dda6
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/fatih/color v1.9.0
github.com/ghodss/yaml v1.0.0
github.com/go-errors/errors v1.0.1
github.com/go-openapi/strfmt v0.19.11
github.com/go-playground/universal-translator v0.17.0 // indirect
github.com/go-swagger/go-swagger v0.25.0
github.com/gobuffalo/fizz v1.13.1-0.20200903094245-046abeb7de46
github.com/gobuffalo/httptest v1.0.2
github.com/gobuffalo/pop/v5 v5.3.2-0.20210108121026-333700c8729e
github.com/gobuffalo/uuid v2.0.5+incompatible
github.com/gofrs/uuid v3.2.0+incompatible
github.com/golang/gddo v0.0.0-20190904175337-72a348e765d2
github.com/golang/mock v1.3.1
github.com/google/go-github/v27 v27.0.1
github.com/google/go-jsonnet v0.16.0
github.com/google/uuid v1.1.1
github.com/gorilla/context v1.1.1
github.com/gorilla/sessions v1.1.3
github.com/hashicorp/consul/api v1.5.0
github.com/hashicorp/golang-lru v0.5.4
github.com/imdario/mergo v0.3.7
github.com/inhies/go-bytesize v0.0.0-20201103132853-d0aed0d254f8
github.com/jteeuwen/go-bindata v3.0.7+incompatible
github.com/julienschmidt/httprouter v1.2.0
github.com/knadh/koanf v0.14.1-0.20201201075439-e0853799f9ec
github.com/leodido/go-urn v1.2.1 // indirect
github.com/markbates/pkger v0.17.1
github.com/mattn/goveralls v0.0.5
github.com/mikefarah/yq v1.15.0
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826
github.com/ory/analytics-go/v4 v4.0.0
github.com/ory/cli v0.0.35
github.com/ory/dockertest/v3 v3.6.2
github.com/ory/go-acc v0.1.0
github.com/ory/go-convenience v0.1.0
github.com/ory/graceful v0.1.1
github.com/ory/herodot v0.9.0
github.com/ory/jsonschema/v3 v3.0.1
github.com/ory/kratos-client-go v0.0.0-00010101000000-000000000000
github.com/ory/kratos/corp v0.0.0-00010101000000-000000000000
github.com/ory/mail/v3 v3.0.0
github.com/ory/nosurf v1.2.3
github.com/ory/x v0.0.174
github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.4.0
github.com/prometheus/common v0.9.1
github.com/rs/cors v1.6.0
github.com/shurcooL/go v0.0.0-20180423040247-9e1955d9fb6e
github.com/sirupsen/logrus v1.6.0
github.com/slack-go/slack v0.7.4
github.com/spf13/cobra v1.0.0
github.com/spf13/pflag v1.0.5
github.com/sqs/goreturns v0.0.0-20181028201513-538ac6014518
github.com/stretchr/testify v1.6.1
github.com/tidwall/gjson v1.3.5
github.com/tidwall/sjson v1.0.4
github.com/uber/jaeger-lib v2.4.0+incompatible // indirect
github.com/urfave/negroni v1.0.0
golang.org/x/crypto v0.0.0-20200709230013-948cd5f35899
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
golang.org/x/tools v0.0.0-20200717024301-6ddee64345a6
gopkg.in/go-playground/validator.v9 v9.28.0
)