clean up go.mod (#15638)

This commit is contained in:
Chris S. Kim 2022-12-01 11:24:35 -05:00 committed by GitHub
parent 36f05bc8fb
commit 10349bd84b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 6 deletions

15
go.mod
View File

@ -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