-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathgo.mod
44 lines (41 loc) · 1.69 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
module github.com/LazarenkoA/prometheus_1C_exporter
go 1.19
require (
github.com/agiledragon/gomonkey/v2 v2.10.1
github.com/creasty/defaults v1.7.0
github.com/golang/mock v1.6.0
github.com/judwhite/go-svc v1.2.1
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.11.1
github.com/prometheus/procfs v0.6.0
github.com/shirou/gopsutil v2.20.8+incompatible
github.com/softlandia/cpd v0.0.0-20200709134012-d8dd1a8ae52d
github.com/stretchr/testify v1.8.4
go.uber.org/zap v1.24.0
golang.org/x/text v0.3.8
gopkg.in/natefinch/lumberjack.v2 v2.2.1
gopkg.in/yaml.v2 v2.3.0
)
require (
github.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d // indirect
github.com/alecthomas/jsonschema v0.0.0-20220216202328-9eeeec9d044b // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-ole/go-ole v1.2.4 // indirect
github.com/golang/protobuf v1.4.3 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/iancoleman/orderedmap v0.0.0-20190318233801-ac98e3ecb4b0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.26.0 // indirect
github.com/urakozz/go-json-schema-generator v0.0.0-20170712082747-645b0ded705e // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/goleak v1.2.1 // indirect
go.uber.org/multierr v1.6.0 // indirect
golang.org/x/sys v0.10.0 // indirect
google.golang.org/protobuf v1.26.0-rc.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)