Skip to content
This repository was archived by the owner on Jan 24, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 19 additions & 39 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,60 +1,40 @@
module github.com/kinecosystem/agora-common
module github.com/kinecosystem/agora

go 1.13

require (
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
github.com/DataDog/datadog-go v3.4.1+incompatible
github.com/Microsoft/go-winio v0.4.16 // indirect
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect
github.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412
cirello.io/dynamolock v1.3.3
cloud.google.com/go/bigquery v1.8.0
github.com/aws/aws-sdk-go v1.25.25
github.com/aws/aws-sdk-go-v2 v0.17.0
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
github.com/containerd/continuity v0.0.0-20210315143101-93e15499afd5 // indirect
github.com/docker/go-connections v0.4.0 // indirect
github.com/docker/go-units v0.4.0 // indirect
github.com/envoyproxy/protoc-gen-validate v0.1.0
github.com/go-errors/errors v1.0.1 // indirect
github.com/go-redis/redis/v7 v7.0.0
github.com/goburrow/cache v0.1.0
github.com/golang/protobuf v1.5.0
github.com/google/uuid v1.1.2
github.com/gorilla/handlers v1.5.1
github.com/gorilla/mux v1.6.2
github.com/gorilla/websocket v1.4.2
github.com/gotestyourself/gotestyourself v2.2.0+incompatible // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.2.2
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
github.com/grpc-ecosystem/grpc-gateway v1.14.6
github.com/kinecosystem/agora-api v0.26.1
github.com/go-redis/redis_rate/v8 v8.0.0
github.com/golang/protobuf v1.5.1
github.com/hashicorp/golang-lru v0.5.1
github.com/kinecosystem/agora-api v0.27.0
github.com/kinecosystem/agora-common v0.85.0
github.com/kinecosystem/go v0.0.0-20191108204735-d6832148266e
github.com/kr/pretty v0.2.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/lib/pq v1.5.2 // indirect
github.com/mattn/go-colorable v0.1.6 // indirect
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
github.com/mr-tron/base58 v1.2.0
github.com/opencontainers/image-spec v1.0.1 // indirect
github.com/opencontainers/runc v1.0.0-rc9 // indirect
github.com/ory/dockertest v3.3.5+incompatible
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.7.1
github.com/prometheus/procfs v0.2.0 // indirect
github.com/sirupsen/logrus v1.8.1
github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/viper v1.7.0
github.com/spf13/cobra v1.1.1
github.com/stellar/go v0.0.0-20191211203732-552e507ffa37
github.com/stellar/go-xdr v0.0.0-20200331223602-71a1e6d555f2 // indirect
github.com/stretchr/testify v1.5.1
github.com/stretchr/objx v0.2.0 // indirect
github.com/stretchr/testify v1.6.1
github.com/x-cray/logrus-prefixed-formatter v0.5.2
github.com/ybbus/jsonrpc v2.1.2+incompatible
golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0 // indirect
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 // indirect
golang.org/x/sys v0.0.0-20210403161142-5e06dd20ab57 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
golang.org/x/time v0.0.0-20191024005414-555d28b269f0
google.golang.org/api v0.44.0
google.golang.org/grpc v1.37.0
google.golang.org/protobuf v1.26.0
gopkg.in/yaml.v2 v2.3.0 // indirect
gotest.tools v2.2.0+incompatible // indirect
mfycheng.dev/retry v1.1.0
gotest.tools v2.2.0+incompatible
)

// This dependency of stellar/go no longer exists; use a forked version of the repo instead.
Expand Down
Loading