mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-19 20:19:12 -06:00
52 lines
1.9 KiB
Modula-2
52 lines
1.9 KiB
Modula-2
module github.com/owncloud/ocis/accounts
|
|
|
|
go 1.15
|
|
|
|
require (
|
|
contrib.go.opencensus.io/exporter/jaeger v0.2.1
|
|
contrib.go.opencensus.io/exporter/ocagent v0.6.0
|
|
contrib.go.opencensus.io/exporter/zipkin v0.1.1
|
|
github.com/Masterminds/sprig/v3 v3.2.2 // indirect
|
|
github.com/cs3org/go-cs3apis v0.0.0-20210209082852-35ace33082f5
|
|
github.com/cs3org/reva v1.6.0
|
|
github.com/go-chi/chi v4.1.2+incompatible
|
|
github.com/go-chi/render v1.0.1
|
|
github.com/gofrs/uuid v3.3.0+incompatible
|
|
github.com/golang/protobuf v1.4.3
|
|
github.com/huandu/xstrings v1.3.2 // indirect
|
|
github.com/mattn/go-runewidth v0.0.10 // indirect
|
|
github.com/mennanov/fieldmask-utils v0.3.3
|
|
github.com/micro/cli/v2 v2.1.2
|
|
github.com/micro/go-micro/v2 v2.9.1
|
|
github.com/micro/protoc-gen-micro/v2 v2.1.1 // indirect
|
|
github.com/mitchellh/copystructure v1.1.1 // indirect
|
|
github.com/oklog/run v1.1.0
|
|
github.com/olekukonko/tablewriter v0.0.4
|
|
github.com/openzipkin/zipkin-go v0.2.2
|
|
github.com/owncloud/ocis/ocis-pkg v0.0.0-20210216094451-dc73176dc62d
|
|
github.com/owncloud/ocis/settings v0.0.0-20210216094451-dc73176dc62d
|
|
github.com/prometheus/client_golang v1.7.1
|
|
github.com/restic/calens v0.2.0
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
|
github.com/rs/zerolog v1.20.0
|
|
github.com/spf13/viper v1.7.0
|
|
github.com/stretchr/testify v1.7.0
|
|
go.opencensus.io v0.22.6
|
|
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad
|
|
golang.org/x/mod v0.4.1 // indirect
|
|
golang.org/x/net v0.0.0-20210119194325-5f4716e94777
|
|
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c // indirect
|
|
golang.org/x/text v0.3.5 // indirect
|
|
google.golang.org/genproto v0.0.0-20200624020401-64a14ca9d1ad
|
|
google.golang.org/grpc v1.35.0
|
|
google.golang.org/protobuf v1.25.0
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
honnef.co/go/tools v0.1.1 // indirect
|
|
)
|
|
|
|
replace (
|
|
github.com/owncloud/ocis/ocis-pkg => ../ocis-pkg
|
|
github.com/owncloud/ocis/settings => ../settings
|
|
google.golang.org/grpc => google.golang.org/grpc v1.26.0
|
|
)
|