diff --git a/go.mod b/go.mod index ce15fb875..57eb2e4c2 100644 --- a/go.mod +++ b/go.mod @@ -2,13 +2,16 @@ module github.com/hashicorp/consul go 1.19 -replace github.com/hashicorp/consul/api => ./api +replace ( + github.com/hashicorp/consul/api => ./api + github.com/hashicorp/consul/proto-public => ./proto-public + github.com/hashicorp/consul/sdk => ./sdk +) -replace github.com/hashicorp/consul/sdk => ./sdk - -replace github.com/hashicorp/consul/proto-public => ./proto-public - -replace launchpad.net/gocheck => github.com/go-check/check v0.0.0-20140225173054-eb6ee6f84d0a +exclude ( + github.com/hashicorp/go-msgpack v1.1.5 // has breaking changes and must be avoided + github.com/hashicorp/go-msgpack v1.1.6 // contains retractions but same as v1.1.5 +) require ( github.com/NYTimes/gziphandler v1.0.1