go.mod: fix module replacement to build with go1.13

- fix timestamp for github.com/golang/lint
- move one commit ahead of v0.12.0 for github.com/apache/thrift
This commit is contained in:
Will Norris 2019-09-07 21:38:41 +00:00
parent 57a4d4671e
commit bee1a2766a
2 changed files with 10 additions and 5 deletions

10
go.mod
View file

@ -36,9 +36,15 @@ require (
)
// temporary fix to https://github.com/golang/lint/issues/436 which still seems to be a problem
replace github.com/golang/lint => github.com/golang/lint v0.0.0-20190227174305-8f45f776aaf1
replace github.com/golang/lint => github.com/golang/lint v0.0.0-20181217174547-8f45f776aaf1
// local copy of envy package without cobra support
replace github.com/jamiealquiza/envy => ./third_party/envy
replace git.apache.org/thrift.git => github.com/apache/thrift v0.12.0
// replace git.apache.org with github.com/apache (which is the upstream master
// anyway), since git.apache.org is offline. v0.12.0 is the latest release, but
// go complains about "github.com/apache/thrift@v0.12.0 used for two different
// module paths". Instead we move one commit ahead.
replace git.apache.org/thrift.git => github.com/apache/thrift v0.12.1-0.20190107215100-e824efcb7935
go 1.13