Skip to content

Commit ad5057d

Browse files
authored
Merge pull request percona#32 from percona/pmm-2.16-go-mod
Use go mod.
2 parents 4e804fa + 1b182b6 commit ad5057d

File tree

561 files changed

+749
-220661
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

561 files changed

+749
-220661
lines changed

Gopkg.lock

Lines changed: 0 additions & 302 deletions
This file was deleted.

Gopkg.toml

Lines changed: 0 additions & 3 deletions
This file was deleted.

go.mod

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
module github.com/prometheus-community/postgres_exporter
2+
3+
go 1.14
4+
5+
require (
6+
github.com/alecthomas/units v0.0.0-20210208195552-ff826a37aa15 // indirect
7+
github.com/blang/semver v3.5.1+incompatible
8+
github.com/golang/protobuf v1.5.1 // indirect
9+
github.com/lib/pq v1.9.0
10+
github.com/percona/exporter_shared v0.7.2
11+
github.com/prometheus/client_golang v1.10.0
12+
github.com/prometheus/client_model v0.2.0
13+
github.com/prometheus/common v0.19.0
14+
github.com/prometheus/promu v0.11.1 // indirect
15+
golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4 // indirect
16+
golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4 // indirect
17+
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
18+
google.golang.org/appengine v1.6.7 // indirect
19+
gopkg.in/alecthomas/kingpin.v2 v2.2.6
20+
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
21+
gopkg.in/yaml.v2 v2.4.0
22+
)

0 commit comments

Comments
 (0)