Skip to content

Commit

Permalink
upgrade some module dependencies (and add a target to Makefile to d…
Browse files Browse the repository at this point in the history
…o so more easily)
  • Loading branch information
patrickdevivo committed Jul 20, 2021
1 parent 64a19cd commit 566af13
Show file tree
Hide file tree
Showing 3 changed files with 402 additions and 119 deletions.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: clean vet test lint lint-ci test-cover bench
.PHONY: clean update vet test lint lint-ci test-cover bench

# default task invoked while running make
all: clean .build/libaskgit.so .build/askgit
Expand Down Expand Up @@ -45,6 +45,9 @@ clean:
# go build tags used by test, vet and more
TAGS = "sqlite_vtable,vtable,sqlite_json1,static,system_libgit2"

update:
go get -tags=$(TAGS) -u ./...

vet:
go vet -v -tags=$(TAGS) ./...

Expand Down
29 changes: 14 additions & 15 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,27 @@ require (
github.com/BurntSushi/toml v0.3.1
github.com/DATA-DOG/go-sqlmock v1.5.0
github.com/Microsoft/go-winio v0.5.0 // indirect
github.com/ProtonMail/go-crypto v0.0.0-20210512092938-c05353c2d58c // indirect
github.com/ProtonMail/go-crypto v0.0.0-20210707164159-52430bf6b52c // indirect
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect
github.com/augmentable-dev/vtab v0.0.0-20210717200339-0c8dcfe2033b
github.com/clbanning/mxj/v2 v2.5.2
github.com/clbanning/mxj/v2 v2.5.5
github.com/ghodss/yaml v1.0.0
github.com/go-git/go-billy/v5 v5.3.1
github.com/go-git/go-git/v5 v5.4.1
github.com/go-openapi/errors v0.19.9 // indirect
github.com/go-openapi/strfmt v0.19.11 // indirect
github.com/go-git/go-git/v5 v5.4.2
github.com/go-openapi/errors v0.20.0 // indirect
github.com/go-openapi/strfmt v0.20.1 // indirect
github.com/jedib0t/go-pretty v4.3.0+incompatible
github.com/kevinburke/ssh_config v1.1.0 // indirect
github.com/libgit2/git2go/v31 v31.4.14
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/mattn/go-sqlite3 v1.14.6
github.com/mitchellh/mapstructure v1.4.0 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/mattn/go-sqlite3 v1.14.8
github.com/pkg/errors v0.9.1
github.com/sergi/go-diff v1.2.0 // indirect
github.com/spf13/cobra v1.1.1
go.mongodb.org/mongo-driver v1.4.4 // indirect
github.com/spf13/cobra v1.2.1
go.mongodb.org/mongo-driver v1.6.0 // indirect
go.riyazali.net/sqlite v0.0.0-20210707161919-414349b4032a
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a // indirect
golang.org/x/net v0.0.0-20210525063256-abc453219eb5 // indirect
golang.org/x/sys v0.0.0-20210601080250-7ecdf8ef093b // indirect
golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
golang.org/x/net v0.0.0-20210716203947-853a461950ff // indirect
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b
)
Loading

0 comments on commit 566af13

Please sign in to comment.