zitadel/go.mod

38 lines
1.5 KiB
Modula-2
Raw Normal View History

2020-03-18 10:38:32 +01:00
module github.com/caos/zitadel
go 1.14
2020-03-18 15:46:41 +01:00
require (
github.com/BurntSushi/toml v0.3.1
2020-03-23 11:53:12 +01:00
github.com/Masterminds/goutils v1.1.0 // indirect
github.com/Masterminds/semver v1.5.0 // indirect
github.com/Masterminds/sprig v2.22.0+incompatible
2020-03-18 15:46:41 +01:00
github.com/caos/logging v0.0.0-20191210002624-b3260f690a6a
2020-03-23 12:25:16 +01:00
github.com/envoyproxy/protoc-gen-validate v0.1.0
2020-03-18 15:46:41 +01:00
github.com/ghodss/yaml v1.0.0
2020-03-23 11:53:12 +01:00
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
2020-03-23 07:01:59 +01:00
github.com/golang/mock v1.4.3
github.com/golang/protobuf v1.3.5
github.com/google/go-cmp v0.4.0 // indirect
2020-03-23 11:53:12 +01:00
github.com/google/uuid v1.1.1 // indirect
2020-03-23 07:01:59 +01:00
github.com/gorilla/schema v1.1.0
github.com/gorilla/securecookie v1.1.1
github.com/grpc-ecosystem/go-grpc-middleware v1.2.0
2020-03-23 11:53:12 +01:00
github.com/grpc-ecosystem/grpc-gateway v1.14.3
github.com/huandu/xstrings v1.3.0 // indirect
github.com/imdario/mergo v0.3.8 // indirect
2020-03-23 07:01:59 +01:00
github.com/kr/pretty v0.1.0 // indirect
2020-03-23 11:53:12 +01:00
github.com/magiconair/properties v1.8.1
github.com/mitchellh/copystructure v1.0.0 // indirect
2020-03-23 07:01:59 +01:00
github.com/stretchr/testify v1.5.1
golang.org/x/crypto v0.0.0-20200320181102-891825fb96df
golang.org/x/net v0.0.0-20200320220750-118fecf932d8 // indirect
golang.org/x/sys v0.0.0-20200321134203-328b4cd54aae // indirect
golang.org/x/text v0.3.2 // indirect
2020-03-23 11:53:12 +01:00
golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135
2020-03-23 12:25:16 +01:00
google.golang.org/genproto v0.0.0-20200319113533-08878b785e9c
2020-03-23 07:01:59 +01:00
google.golang.org/grpc v1.28.0
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
2020-03-18 15:46:41 +01:00
gopkg.in/yaml.v2 v2.2.8 // indirect
)