mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-31 01:10:20 -06:00
46 lines
1.9 KiB
Modula-2
46 lines
1.9 KiB
Modula-2
module github.com/owncloud/ocis/proxy
|
|
|
|
go 1.15
|
|
|
|
require (
|
|
contrib.go.opencensus.io/exporter/jaeger v0.2.1
|
|
contrib.go.opencensus.io/exporter/ocagent v0.7.0
|
|
contrib.go.opencensus.io/exporter/zipkin v0.1.2
|
|
github.com/asim/go-micro/plugins/client/grpc/v3 v3.0.0-20210217182006-0f0ace1a44a9
|
|
github.com/asim/go-micro/v3 v3.5.1-0.20210217182006-0f0ace1a44a9
|
|
github.com/coreos/go-oidc v2.2.1+incompatible
|
|
github.com/cs3org/go-cs3apis v0.0.0-20210316113645-e4a74cb8761c
|
|
github.com/cs3org/reva v1.6.1-0.20210322092416-280aa1906e77
|
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible
|
|
github.com/justinas/alice v1.2.0
|
|
github.com/micro/cli/v2 v2.1.2
|
|
github.com/oklog/run v1.1.0
|
|
github.com/olekukonko/tablewriter v0.0.5
|
|
github.com/openzipkin/zipkin-go v0.2.5
|
|
github.com/owncloud/ocis/accounts v0.5.3-0.20210216094451-dc73176dc62d
|
|
github.com/owncloud/ocis/ocis-pkg v0.0.0-20210216094451-dc73176dc62d
|
|
github.com/owncloud/ocis/settings v0.0.0-20210216094451-dc73176dc62d
|
|
github.com/owncloud/ocis/store v0.0.0-20210216094451-dc73176dc62d
|
|
github.com/prometheus/client_golang v1.9.0
|
|
github.com/rs/zerolog v1.20.0
|
|
github.com/spf13/viper v1.7.1
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/thejerf/suture/v4 v4.0.0
|
|
go.opencensus.io v0.23.0
|
|
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad
|
|
golang.org/x/oauth2 v0.0.0-20210201163806-010130855d6c
|
|
google.golang.org/grpc v1.36.0
|
|
)
|
|
|
|
replace (
|
|
github.com/owncloud/ocis/accounts => ../accounts
|
|
github.com/owncloud/ocis/ocis-pkg => ../ocis-pkg
|
|
github.com/owncloud/ocis/settings => ../settings
|
|
github.com/owncloud/ocis/store => ../store
|
|
// taken from https://github.com/asim/go-micro/blob/master/plugins/registry/etcd/go.mod#L14-L16
|
|
go.etcd.io/etcd/api/v3 => go.etcd.io/etcd/api/v3 v3.0.0-20210204162551-dae29bb719dd
|
|
go.etcd.io/etcd/pkg/v3 => go.etcd.io/etcd/pkg/v3 v3.0.0-20210204162551-dae29bb719dd
|
|
// latest version compatible with etcd
|
|
google.golang.org/grpc => google.golang.org/grpc v1.29.1
|
|
)
|