From 10349bd84b0415e200f05a46d9adeeee0a7776ea Mon Sep 17 00:00:00 2001 From: "Chris S. Kim" Date: Thu, 1 Dec 2022 11:24:35 -0500 Subject: [PATCH] clean up go.mod (#15638) --- go.mod | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/go.mod b/go.mod index ce15fb8752..57eb2e4c29 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