blob: 0333368402e389980c7b25292ee192b7fdc626c4 [file] [log] [blame]
Matteo Scandolo761f7512020-11-23 15:52:40 -08001module github.com/opencord/voltha-openonu-adapter-go
Holger Hildebrandtda7758b2020-03-16 11:30:03 +00002
mgoudae6229342025-11-18 14:45:08 +05303go 1.25.3
Holger Hildebrandtda7758b2020-03-16 11:30:03 +00004
Holger Hildebrandtfa074992020-03-27 15:42:06 +00005require (
mpagenko80622a52021-02-09 16:53:23 +00006 github.com/boguslaw-wojcik/crc32a v1.0.0
Abhay Kumare65b2792025-11-10 13:39:07 +00007 github.com/cevaris/ordered_map v0.0.0-20220813181356-34664b69742b
Andrea Campanellaaec20bd2021-02-25 12:41:34 +01008 github.com/gogo/protobuf v1.3.2
Akash Reddy Kankanala92dfdf82025-03-23 22:07:09 +05309 github.com/golang/protobuf v1.5.4
Holger Hildebrandtfa074992020-03-27 15:42:06 +000010 github.com/google/gopacket v1.1.17
Abhay Kumare65b2792025-11-10 13:39:07 +000011 github.com/grpc-ecosystem/go-grpc-middleware v1.4.0
mpagenkobb47bc22021-04-20 13:29:09 +000012 github.com/looplab/fsm v0.2.0
pnalmas6d6b7d72025-10-23 16:34:22 +053013 github.com/opencord/omci-lib-go/v2 v2.2.4
Abhay Kumare65b2792025-11-10 13:39:07 +000014 github.com/opencord/voltha-lib-go/v7 v7.7.2
Akash Reddy Kankanalac28f0e22025-06-16 11:00:55 +053015 github.com/opencord/voltha-protos/v5 v5.6.5
Abhay Kumare65b2792025-11-10 13:39:07 +000016 github.com/stretchr/testify v1.11.1
17 google.golang.org/grpc v1.76.0
Akash Reddy Kankanala92dfdf82025-03-23 22:07:09 +053018)
19
20require (
Abhay Kumare65b2792025-11-10 13:39:07 +000021 github.com/IBM/sarama v1.46.2 // indirect
Akash Reddy Kankanala92dfdf82025-03-23 22:07:09 +053022 github.com/aead/cmac v0.0.0-20160719120800-7af84192f0b1 // indirect
Abhay Kumare65b2792025-11-10 13:39:07 +000023 github.com/beorn7/perks v1.0.1 // indirect
24 github.com/bufbuild/protocompile v0.14.1 // indirect
25 github.com/cespare/xxhash/v2 v2.3.0 // indirect
26 github.com/coreos/go-semver v0.3.1 // indirect
27 github.com/coreos/go-systemd/v22 v22.5.0 // indirect
Akash Reddy Kankanala92dfdf82025-03-23 22:07:09 +053028 github.com/davecgh/go-spew v1.1.1 // indirect
29 github.com/deckarep/golang-set v1.7.1 // indirect
30 github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
Abhay Kumare65b2792025-11-10 13:39:07 +000031 github.com/eapache/go-resiliency v1.7.0 // indirect
32 github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3 // indirect
Akash Reddy Kankanala92dfdf82025-03-23 22:07:09 +053033 github.com/eapache/queue v1.1.0 // indirect
Abhay Kumare65b2792025-11-10 13:39:07 +000034 github.com/go-redis/redis/v8 v8.11.5 // indirect
Akash Reddy Kankanalac28f0e22025-06-16 11:00:55 +053035 github.com/golang/snappy v0.0.4 // indirect
Abhay Kumare65b2792025-11-10 13:39:07 +000036 github.com/google/uuid v1.6.0 // indirect
37 github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
38 github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect
39 github.com/hashicorp/go-uuid v1.0.3 // indirect
Akash Reddy Kankanala92dfdf82025-03-23 22:07:09 +053040 github.com/jcmturner/aescts/v2 v2.0.0 // indirect
41 github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect
Abhay Kumare65b2792025-11-10 13:39:07 +000042 github.com/jcmturner/gofork v1.7.6 // indirect
43 github.com/jcmturner/gokrb5/v8 v8.4.4 // indirect
Akash Reddy Kankanala92dfdf82025-03-23 22:07:09 +053044 github.com/jcmturner/rpc/v2 v2.0.3 // indirect
Abhay Kumare65b2792025-11-10 13:39:07 +000045 github.com/jhump/protoreflect v1.17.0 // indirect
46 github.com/klauspost/compress v1.18.0 // indirect
47 github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
Akash Reddy Kankanala92dfdf82025-03-23 22:07:09 +053048 github.com/opentracing/opentracing-go v1.2.0 // indirect
Abhay Kumare65b2792025-11-10 13:39:07 +000049 github.com/pierrec/lz4/v4 v4.1.22 // indirect
Akash Reddy Kankanala92dfdf82025-03-23 22:07:09 +053050 github.com/pkg/errors v0.9.1 // indirect
51 github.com/pmezard/go-difflib v1.0.0 // indirect
Abhay Kumare65b2792025-11-10 13:39:07 +000052 github.com/prometheus/client_golang v1.23.2 // indirect
53 github.com/prometheus/client_model v0.6.2 // indirect
54 github.com/prometheus/common v0.66.1 // indirect
55 github.com/prometheus/procfs v0.16.1 // indirect
56 github.com/rcrowley/go-metrics v0.0.0-20250401214520-65e299d6c5c9 // indirect
57 github.com/uber/jaeger-client-go v2.30.0+incompatible // indirect
Akash Reddy Kankanala92dfdf82025-03-23 22:07:09 +053058 github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
Abhay Kumare65b2792025-11-10 13:39:07 +000059 go.etcd.io/etcd/api/v3 v3.6.5 // indirect
60 go.etcd.io/etcd/client/pkg/v3 v3.6.5 // indirect
61 go.etcd.io/etcd/client/v3 v3.6.5 // indirect
Akash Reddy Kankanala92dfdf82025-03-23 22:07:09 +053062 go.uber.org/atomic v1.7.0 // indirect
Abhay Kumare65b2792025-11-10 13:39:07 +000063 go.uber.org/multierr v1.11.0 // indirect
64 go.uber.org/zap v1.27.0 // indirect
65 go.yaml.in/yaml/v2 v2.4.2 // indirect
66 golang.org/x/crypto v0.43.0 // indirect
67 golang.org/x/net v0.46.0 // indirect
68 golang.org/x/sys v0.37.0 // indirect
69 golang.org/x/text v0.30.0 // indirect
70 google.golang.org/genproto/googleapis/api v0.0.0-20250804133106-a7a43d27e69b // indirect
71 google.golang.org/genproto/googleapis/rpc v0.0.0-20250804133106-a7a43d27e69b // indirect
72 google.golang.org/protobuf v1.36.10 // indirect
Akash Reddy Kankanalac28f0e22025-06-16 11:00:55 +053073 gopkg.in/yaml.v3 v3.0.1 // indirect
Holger Hildebrandtfa074992020-03-27 15:42:06 +000074)