mirror of https://github.com/status-im/consul.git
clean up go.mod (#15638)
This commit is contained in:
parent
36f05bc8fb
commit
10349bd84b
15
go.mod
15
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
|
||||
|
|
Loading…
Reference in New Issue