Skip to content

Commit e4803b1

Browse files
authored
Nuke go.mod/go.sum and recreate (#158)
* Nuke go.mod/go.sum and recreate slog's been giving people trouble building [terrastruct/d2](https://github.com/terrastruct/d2) from source. Something's wrong with the google cloud dependencies. Hopefully this fixes things. * test.mk: Fix for BSD sed
1 parent 7c313ab commit e4803b1

File tree

3 files changed

+32
-541
lines changed

3 files changed

+32
-541
lines changed

ci/test.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ coveralls: gotest
1919

2020
gotest:
2121
go test -covermode=count -coverprofile=ci/out/coverage.prof -coverpkg=./... $${GOTESTFLAGS-} ./...
22-
sed -i '/internal\/assert/d' ci/out/coverage.prof
22+
sed -i.bak '/internal\/assert/d' ci/out/coverage.prof

go.mod

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ module cdr.dev/slog
33
go 1.13
44

55
require (
6-
cloud.google.com/go/compute v1.6.1
7-
github.com/alecthomas/chroma v0.9.4
6+
cloud.google.com/go v0.26.0
7+
github.com/alecthomas/chroma v0.10.0
88
github.com/fatih/color v1.13.0
9-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
10-
github.com/google/go-cmp v0.5.8
11-
go.opencensus.io v0.23.0
9+
github.com/google/go-cmp v0.5.3
10+
go.opencensus.io v0.24.0
1211
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
13-
golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f
14-
google.golang.org/genproto v0.0.0-20220421151946-72621c1f0bd3
12+
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2
13+
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013
1514
)

0 commit comments

Comments
 (0)