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