Skip to content

Commit 506c55a

Browse files
committed
bump golang and library
1 parent 54112a1 commit 506c55a

File tree

5 files changed

+327
-241
lines changed

5 files changed

+327
-241
lines changed

collect.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ package main
33
import (
44
"time"
55

6-
"github.com/go-kit/kit/log"
7-
"github.com/go-kit/kit/log/level"
8-
"github.com/prometheus/client_golang/prometheus"
6+
"github.com/go-kit/log"
7+
"github.com/go-kit/log/level"
98
"github.com/jinzhu/now"
9+
"github.com/prometheus/client_golang/prometheus"
1010
)
1111

1212
type Collector struct {

go.mod

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,26 @@
11
module github.com/chatwork/sendgrid-stats-exporter
22

3-
go 1.15
3+
go 1.18
44

55
require (
6-
github.com/go-kit/kit v0.10.0
7-
github.com/prometheus/client_golang v1.8.0
8-
github.com/prometheus/common v0.14.0
6+
github.com/go-kit/kit v0.12.0
7+
github.com/jinzhu/now v1.1.5
8+
github.com/prometheus/client_golang v1.12.2
9+
github.com/prometheus/common v0.34.0
910
gopkg.in/alecthomas/kingpin.v2 v2.2.6
10-
mvdan.cc/gofumpt v0.0.0-20201107090320-a024667a00f1 // indirect
11+
)
12+
13+
require (
14+
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
15+
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
16+
github.com/beorn7/perks v1.0.1 // indirect
17+
github.com/cespare/xxhash/v2 v2.1.2 // indirect
18+
github.com/go-kit/log v0.2.0 // indirect
19+
github.com/go-logfmt/logfmt v0.5.1 // indirect
20+
github.com/golang/protobuf v1.5.2 // indirect
21+
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
22+
github.com/prometheus/client_model v0.2.0 // indirect
23+
github.com/prometheus/procfs v0.7.3 // indirect
24+
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
25+
google.golang.org/protobuf v1.27.1 // indirect
1126
)

0 commit comments

Comments
 (0)