mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-02 02:11:18 -06:00
Update reva and also set a replace for github.com/oleiade/reflections. The replace should resolve the dependabot issue. See oleiade/reflections#14. Once https://github.com/ory/fosite has updated to reflections 1.0.1 or higher we can remove the replace.
37 lines
1.4 KiB
Modula-2
37 lines
1.4 KiB
Modula-2
module github.com/owncloud/ocis/graph
|
|
|
|
go 1.13
|
|
|
|
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/v3 v3.5.1-0.20210217182006-0f0ace1a44a9
|
|
github.com/cs3org/go-cs3apis v0.0.0-20210209082852-35ace33082f5
|
|
github.com/cs3org/reva v1.6.1-0.20210223065028-53f39499762e
|
|
github.com/go-chi/chi v4.1.2+incompatible
|
|
github.com/go-chi/render v1.0.1
|
|
github.com/go-ldap/ldap/v3 v3.2.4
|
|
github.com/imdario/mergo v0.3.11 // indirect
|
|
github.com/micro/cli/v2 v2.1.2
|
|
github.com/oklog/run v1.1.0
|
|
github.com/openzipkin/zipkin-go v0.2.2
|
|
github.com/owncloud/ocis/ocis-pkg v0.0.0-20210216094451-dc73176dc62d
|
|
github.com/spf13/afero v1.3.4 // indirect
|
|
github.com/spf13/viper v1.7.1
|
|
github.com/yaegashi/msgraph.go v0.1.4
|
|
go.opencensus.io v0.22.6
|
|
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad // indirect
|
|
golang.org/x/mod v0.4.1 // indirect
|
|
google.golang.org/grpc v1.35.0
|
|
)
|
|
|
|
replace (
|
|
github.com/owncloud/ocis/ocis-pkg => ../ocis-pkg
|
|
// 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
|
|
)
|