Skip to content

Commit

Permalink
Update depends and make Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
vit1251 committed Sep 30, 2024
1 parent a35f291 commit 64ab088
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 54 deletions.
31 changes: 31 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@

GOOS := linux
GOARCH := amd64
CGO_ENABLED := 1

TARGET := golden-${GOOS}-${GOARCH}

.DEFAULT_GOAL := all

.PHONY: all
all:
make clean
make build

.PHONY: clean
clean:
rm -f ${TARGET}
rm -f mod.sum

.PHONY: check
check:
go get -v ./...
#go generate
go test ./...

.PHONY: build
build:
go get -u ./...
go get -v ./...
#go generate
go build -o ${TARGET} ./cmd/golden
61 changes: 7 additions & 54 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,61 +3,14 @@ module github.com/vit1251/golden
go 1.16

require (
github.com/benbjohnson/clock v1.3.0 // indirect
github.com/creack/pty v1.1.18 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/getlantern/context v0.0.0-20220418194847-3d5e7a086201 // indirect
github.com/getlantern/errors v1.0.3 // indirect
github.com/getlantern/golog v0.0.0-20221014032422-49749a7176cf // indirect
github.com/getlantern/hex v0.0.0-20220104173244-ad7e4b9194dc // indirect
github.com/getlantern/hidden v0.0.0-20220104173330-f221c5a24770 // indirect
github.com/getlantern/ops v0.0.0-20220713155959-1315d978fff7 // indirect
github.com/getlantern/systray v1.2.1
github.com/go-logr/logr v1.2.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-stack/stack v1.8.1 // indirect
github.com/gobwas/httphead v0.1.0 // indirect
github.com/gobwas/pool v0.2.1 // indirect
github.com/gobwas/ws v1.1.0
github.com/google/go-cmp v0.5.9 // indirect
github.com/gorilla/mux v1.8.0
github.com/huandu/go-assert v1.1.5 // indirect
github.com/huandu/go-sqlbuilder v1.16.0
github.com/huandu/xstrings v1.3.2 // indirect
github.com/gobwas/ws v1.4.0
github.com/gorilla/mux v1.8.1
github.com/huandu/go-sqlbuilder v1.30.0
github.com/huandu/xstrings v1.5.0 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/kr/pty v1.1.8 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/lxn/walk v0.0.0-20210112085537-c389da54e794 // indirect
github.com/lxn/win v0.0.0-20210218163916-a377121e959e // indirect
github.com/mattn/go-sqlite3 v1.14.16
github.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c // indirect
github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.9.0 // indirect
github.com/mattn/go-sqlite3 v1.14.23
github.com/satori/go.uuid v1.2.0
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966 // indirect
github.com/stretchr/objx v0.5.0 // indirect
github.com/stretchr/testify v1.8.1 // indirect
github.com/yuin/goldmark v1.5.2 // indirect
go.opentelemetry.io/otel v1.11.1 // indirect
go.opentelemetry.io/otel/trace v1.11.1 // indirect
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/goleak v1.2.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
go.uber.org/zap v1.23.0 // indirect
golang.org/x/crypto v0.1.0 // indirect
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
golang.org/x/mod v0.6.0 // indirect
golang.org/x/net v0.1.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.1.0 // indirect
golang.org/x/term v0.1.0 // indirect
golang.org/x/text v0.4.0
golang.org/x/tools v0.2.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
gopkg.in/Knetic/govaluate.v3 v3.0.0 // indirect
golang.org/x/sys v0.25.0 // indirect
golang.org/x/text v0.18.0
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

0 comments on commit 64ab088

Please sign in to comment.