Skip to content

Commit

Permalink
build: use go 1.19 and tidy up deps
Browse files Browse the repository at this point in the history
  • Loading branch information
raul-te committed Jan 5, 2023
1 parent 5278665 commit bdf7df6
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 766 deletions.
13 changes: 9 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
module github.com/thousandeyes/shoelaces

go 1.15
go 1.19

require (
github.com/go-kit/kit v0.12.0
github.com/go-kit/log v0.2.1 // indirect
github.com/go-stack/stack v1.8.1 // indirect
github.com/gorilla/mux v1.8.0
github.com/justinas/alice v1.2.0
github.com/kr/logfmt v0.0.0-20210122060352-19f9bcb100e6 // indirect
github.com/namsral/flag v1.7.4-pre
gopkg.in/yaml.v2 v2.4.0
)

require (
github.com/go-kit/log v0.2.1 // indirect
github.com/go-logfmt/logfmt v0.5.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
)
736 changes: 3 additions & 733 deletions go.sum

Large diffs are not rendered by default.

5 changes: 0 additions & 5 deletions vendor/github.com/go-kit/log/go.mod

This file was deleted.

2 changes: 0 additions & 2 deletions vendor/github.com/go-kit/log/go.sum

This file was deleted.

3 changes: 0 additions & 3 deletions vendor/github.com/go-logfmt/logfmt/go.mod

This file was deleted.

3 changes: 0 additions & 3 deletions vendor/github.com/gorilla/mux/go.mod

This file was deleted.

3 changes: 0 additions & 3 deletions vendor/github.com/justinas/alice/go.mod

This file was deleted.

5 changes: 0 additions & 5 deletions vendor/gopkg.in/yaml.v2/go.mod

This file was deleted.

19 changes: 11 additions & 8 deletions vendor/modules.txt
Original file line number Diff line number Diff line change
@@ -1,26 +1,29 @@
# github.com/go-kit/kit v0.12.0
## explicit
## explicit; go 1.17
github.com/go-kit/kit/log
github.com/go-kit/kit/log/level
# github.com/go-kit/log v0.2.1
## explicit
## explicit; go 1.17
github.com/go-kit/log
github.com/go-kit/log/level
# github.com/go-logfmt/logfmt v0.5.1
## explicit; go 1.17
github.com/go-logfmt/logfmt
# github.com/go-stack/stack v1.8.1
## explicit
# github.com/gorilla/mux v1.8.0
## explicit
## explicit; go 1.12
github.com/gorilla/mux
# github.com/justinas/alice v1.2.0
## explicit
## explicit; go 1.12
github.com/justinas/alice
# github.com/kr/logfmt v0.0.0-20210122060352-19f9bcb100e6
# github.com/kr/text v0.2.0
## explicit
# github.com/namsral/flag v1.7.4-pre
## explicit
github.com/namsral/flag
# gopkg.in/yaml.v2 v2.4.0
# github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e
## explicit; go 1.12
# gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f
## explicit
# gopkg.in/yaml.v2 v2.4.0
## explicit; go 1.15
gopkg.in/yaml.v2

0 comments on commit bdf7df6

Please sign in to comment.