girishk | 5259f8e | 2019-10-10 18:44:44 +0000 | [diff] [blame] | 1 | module github.com/opencord/voltha-go |
| 2 | |
Akash Reddy Kankanala | 929cc00 | 2025-04-08 15:05:21 +0530 | [diff] [blame^] | 3 | go 1.23 |
girishk | 5259f8e | 2019-10-10 18:44:44 +0000 | [diff] [blame] | 4 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 5 | replace ( |
| 6 | github.com/coreos/bbolt v1.3.4 => go.etcd.io/bbolt v1.3.4 |
| 7 | go.etcd.io/bbolt v1.3.4 => github.com/coreos/bbolt v1.3.4 |
| 8 | google.golang.org/grpc => google.golang.org/grpc v1.25.1 |
| 9 | ) |
| 10 | |
girishk | 5259f8e | 2019-10-10 18:44:44 +0000 | [diff] [blame] | 11 | require ( |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 12 | github.com/Shopify/sarama v1.29.1 |
| 13 | github.com/buraksezer/consistent v0.0.0-20191006190839-693edf70fd72 |
khenaidoo | 5e4fca3 | 2021-05-12 16:02:23 -0400 | [diff] [blame] | 14 | github.com/cenkalti/backoff/v3 v3.2.2 |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 15 | github.com/cespare/xxhash v1.1.0 |
Andrea Campanella | 3614a92 | 2021-02-25 12:40:42 +0100 | [diff] [blame] | 16 | github.com/gogo/protobuf v1.3.2 |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 17 | github.com/golang/mock v1.6.0 |
| 18 | github.com/golang/protobuf v1.5.2 |
| 19 | github.com/google/uuid v1.3.0 |
nikesh.krishnan | 0ded28d | 2023-06-28 12:36:32 +0530 | [diff] [blame] | 20 | github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 |
Sridhar Ravindra | 84f0c3a | 2025-02-14 15:10:27 +0530 | [diff] [blame] | 21 | github.com/opencord/voltha-lib-go/v7 v7.6.6 |
Mahir Gunyel | 2b55739 | 2025-01-02 16:36:13 -0800 | [diff] [blame] | 22 | github.com/opencord/voltha-protos/v5 v5.6.2 |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 23 | github.com/opentracing/opentracing-go v1.2.0 |
Daniele Rossi | d68b0b7 | 2019-10-31 11:36:05 +0100 | [diff] [blame] | 24 | github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2 |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 25 | github.com/stretchr/testify v1.7.0 |
| 26 | github.com/uber/jaeger-client-go v2.29.1+incompatible |
khenaidoo | a46458b | 2021-12-15 16:50:44 -0500 | [diff] [blame] | 27 | google.golang.org/grpc v1.44.0 |
girishk | 5259f8e | 2019-10-10 18:44:44 +0000 | [diff] [blame] | 28 | ) |
Akash Reddy Kankanala | 929cc00 | 2025-04-08 15:05:21 +0530 | [diff] [blame^] | 29 | |
| 30 | require ( |
| 31 | github.com/beorn7/perks v1.0.1 // indirect |
| 32 | github.com/bsm/sarama-cluster v2.1.15+incompatible // indirect |
| 33 | github.com/cespare/xxhash/v2 v2.1.1 // indirect |
| 34 | github.com/cevaris/ordered_map v0.0.0-20190319150403-3adeae072e73 // indirect |
| 35 | github.com/coreos/bbolt v1.3.4 // indirect |
| 36 | github.com/coreos/etcd v3.3.25+incompatible // indirect |
| 37 | github.com/coreos/go-semver v0.3.0 // indirect |
| 38 | github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf // indirect |
| 39 | github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f // indirect |
| 40 | github.com/davecgh/go-spew v1.1.1 // indirect |
| 41 | github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect |
| 42 | github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect |
| 43 | github.com/dustin/go-humanize v1.0.0 // indirect |
| 44 | github.com/eapache/go-resiliency v1.2.0 // indirect |
| 45 | github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 // indirect |
| 46 | github.com/eapache/queue v1.1.0 // indirect |
| 47 | github.com/go-redis/redis/v8 v8.3.4 // indirect |
| 48 | github.com/golang/snappy v0.0.3 // indirect |
| 49 | github.com/google/btree v1.0.1 // indirect |
| 50 | github.com/gorilla/websocket v1.4.2 // indirect |
| 51 | github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect |
| 52 | github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect |
| 53 | github.com/hashicorp/go-uuid v1.0.2 // indirect |
| 54 | github.com/jcmturner/aescts/v2 v2.0.0 // indirect |
| 55 | github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect |
| 56 | github.com/jcmturner/gofork v1.0.0 // indirect |
| 57 | github.com/jcmturner/gokrb5/v8 v8.4.2 // indirect |
| 58 | github.com/jcmturner/rpc/v2 v2.0.3 // indirect |
| 59 | github.com/jhump/protoreflect v1.10.2 // indirect |
| 60 | github.com/jonboulle/clockwork v0.2.2 // indirect |
| 61 | github.com/json-iterator/go v1.1.11 // indirect |
| 62 | github.com/klauspost/compress v1.12.2 // indirect |
| 63 | github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect |
| 64 | github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect |
| 65 | github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
| 66 | github.com/modern-go/reflect2 v1.0.1 // indirect |
| 67 | github.com/pierrec/lz4 v2.6.0+incompatible // indirect |
| 68 | github.com/pkg/errors v0.9.1 // indirect |
| 69 | github.com/pmezard/go-difflib v1.0.0 // indirect |
| 70 | github.com/prometheus/client_golang v1.11.0 // indirect |
| 71 | github.com/prometheus/client_model v0.2.0 // indirect |
| 72 | github.com/prometheus/common v0.26.0 // indirect |
| 73 | github.com/prometheus/procfs v0.6.0 // indirect |
| 74 | github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect |
| 75 | github.com/sirupsen/logrus v1.6.0 // indirect |
| 76 | github.com/soheilhy/cmux v0.1.5 // indirect |
| 77 | github.com/tmc/grpc-websocket-proxy v0.0.0-20201229170055-e5319fda7802 // indirect |
| 78 | github.com/uber/jaeger-lib v2.4.1+incompatible // indirect |
| 79 | github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect |
| 80 | go.etcd.io/etcd v3.3.25+incompatible // indirect |
| 81 | go.opentelemetry.io/otel v0.13.0 // indirect |
| 82 | go.uber.org/atomic v1.7.0 // indirect |
| 83 | go.uber.org/multierr v1.6.0 // indirect |
| 84 | go.uber.org/zap v1.18.1 // indirect |
| 85 | golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e // indirect |
| 86 | golang.org/x/net v0.0.0-20210614182718-04defd469f4e // indirect |
| 87 | golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect |
| 88 | golang.org/x/text v0.3.6 // indirect |
| 89 | golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect |
| 90 | google.golang.org/genproto v0.0.0-20220208230804-65c12eb4c068 // indirect |
| 91 | google.golang.org/protobuf v1.27.1 // indirect |
| 92 | gopkg.in/yaml.v2 v2.4.0 // indirect |
| 93 | gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect |
| 94 | sigs.k8s.io/yaml v1.2.0 // indirect |
| 95 | ) |