Skip to content

Commit

Permalink
Merge pull request #35 from go-ksplit/laverya/dependency-updates
Browse files Browse the repository at this point in the history
update spf13 and testify dependencies
  • Loading branch information
laverya committed May 5, 2021
2 parents 22a7405 + eb58c00 commit c4891e6
Show file tree
Hide file tree
Showing 3 changed files with 185 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ test:

citest: .state/coverage.out

.state/coverage.out: $(SRC)
.state/coverage.out: $(SRC) go.mod go.sum
@mkdir -p .state/
GO111MODULE=on go test -coverprofile=.state/coverage.out --race -v ./...

build: bin/ksplit

bin/ksplit: $(SRC)
bin/ksplit: $(SRC) go.mod go.sum
@mkdir -p bin/
go build -o bin/ksplit ./ksplit
12 changes: 8 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@ module github.com/go-ksplit/ksplit
go 1.16

require (
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6 // indirect
github.com/json-iterator/go v1.1.9 // indirect
github.com/pkg/errors v0.9.1
github.com/spf13/afero v1.2.2
github.com/spf13/cobra v0.0.7
github.com/spf13/viper v1.6.3
github.com/stretchr/testify v1.4.0
github.com/spf13/afero v1.6.0
github.com/spf13/cobra v1.1.3
github.com/spf13/viper v1.7.1
github.com/stretchr/testify v1.7.0
github.com/ugorji/go v1.1.4 // indirect
github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77 // indirect
gopkg.in/laverya/yaml.v3 v3.0.0-beta5
)
Loading

0 comments on commit c4891e6

Please sign in to comment.