-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
34c1cb0
commit 9d2d8ce
Showing
4 changed files
with
101 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,48 @@ | ||
module github.com/rivosinc/prometheus-slurm-exporter | ||
|
||
go 1.20 | ||
go 1.21.0 | ||
|
||
toolchain go1.22.2 | ||
|
||
require ( | ||
github.com/prometheus/client_golang v1.16.0 | ||
github.com/prometheus/client_model v0.3.0 | ||
github.com/stretchr/testify v1.8.4 | ||
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 | ||
golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f | ||
) | ||
|
||
require ( | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/cilium/ebpf v0.14.0 // indirect | ||
github.com/cosiner/argv v0.1.0 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/derekparker/trie v0.0.0-20230829180723-39f4de51ef7d // indirect | ||
github.com/go-delve/delve v1.22.1 // indirect | ||
github.com/go-delve/liner v1.2.3-0.20231231155935-4726ab1d7f62 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/go-dap v0.12.0 // indirect | ||
github.com/hashicorp/golang-lru v1.0.2 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/mattn/go-runewidth v0.0.15 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/common v0.42.0 // indirect | ||
github.com/prometheus/procfs v0.10.1 // indirect | ||
github.com/rivo/uniseg v0.4.7 // indirect | ||
github.com/rogpeppe/go-internal v1.11.0 // indirect | ||
golang.org/x/sys v0.12.0 // indirect | ||
google.golang.org/protobuf v1.30.0 // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
github.com/sirupsen/logrus v1.9.3 // indirect | ||
github.com/spf13/cobra v1.8.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
go.starlark.net v0.0.0-20240411212711-9b43f0afd521 // indirect | ||
golang.org/x/arch v0.7.0 // indirect | ||
golang.org/x/sys v0.19.0 // indirect | ||
google.golang.org/protobuf v1.33.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters