Don Newton | e0d34a8 | 2019-11-14 10:58:06 -0500 | [diff] [blame] | 1 | module github.com/opencord/ofagent-go |
| 2 | |
David K. Bainbridge | 595b670 | 2021-04-09 16:10:58 +0000 | [diff] [blame] | 3 | go 1.16 |
Don Newton | e0d34a8 | 2019-11-14 10:58:06 -0500 | [diff] [blame] | 4 | |
David K. Bainbridge | e05cf0c | 2021-08-19 03:16:50 +0000 | [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 | |
Don Newton | e0d34a8 | 2019-11-14 10:58:06 -0500 | [diff] [blame] | 11 | require ( |
David K. Bainbridge | e05cf0c | 2021-08-19 03:16:50 +0000 | [diff] [blame] | 12 | github.com/golang/protobuf v1.5.2 |
| 13 | github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 |
Jonathan Hart | 828908c | 2020-04-15 14:23:45 -0700 | [diff] [blame] | 14 | github.com/opencord/goloxi v1.0.1 |
khenaidoo | fcf0b8d | 2021-10-19 17:57:30 -0400 | [diff] [blame^] | 15 | github.com/opencord/voltha-lib-go/v7 v7.1.0 |
| 16 | github.com/opencord/voltha-protos/v5 v5.1.0 |
David K. Bainbridge | e05cf0c | 2021-08-19 03:16:50 +0000 | [diff] [blame] | 17 | github.com/stretchr/testify v1.7.0 |
| 18 | golang.org/x/net v0.0.0-20210614182718-04defd469f4e |
| 19 | google.golang.org/grpc v1.41.0 |
Don Newton | e0d34a8 | 2019-11-14 10:58:06 -0500 | [diff] [blame] | 20 | ) |