@@ -2,56 +2,122 @@ module github.com/chronosphereio/chronoctl-core
2
2
3
3
go 1.23
4
4
5
+ // Required to avoid picking up https://github.com/go-openapi/strfmt/commit/b36a4901fcb51dbf4300a5a6b60b4335440aa208
6
+ // which causes strfmt.DateTime values to be incorrectly omitted from yaml output due to a bug in the yaml library
7
+ // where the IsZero method on pointers that implement the IsZeroer interface is not invoked.
8
+ replace github.com/go-openapi/strfmt => github.com/go-openapi/strfmt v0.21.5
9
+
5
10
require (
6
11
github.com/alecthomas/participle/v2 v2.1.0
7
- github.com/davecgh/go-spew v1.1.1
12
+ github.com/anyascii/go v0.3.2
13
+ github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
8
14
github.com/fatih/color v1.15.0
9
- github.com/go-openapi/errors v0.20.2
15
+ github.com/go-openapi/errors v0.20.4
10
16
github.com/go-openapi/inflect v0.19.0
11
- github.com/go-openapi/runtime v0.19.28
12
- github.com/go-openapi/strfmt v0.21.5
13
- github.com/go-openapi/swag v0.19.15
14
- github.com/go-openapi/validate v0.20.2
17
+ github.com/go-openapi/runtime v0.25.0
18
+ github.com/go-openapi/strfmt v0.21.7
19
+ github.com/go-openapi/swag v0.22.4
20
+ github.com/go-openapi/validate v0.22.1
15
21
github.com/golang/mock v1.6.0
16
- github.com/golang/protobuf v1.5.2
22
+ github.com/golang/protobuf v1.5.3
17
23
github.com/karrick/tparse/v2 v2.8.2
18
24
github.com/olekukonko/tablewriter v0.0.5
19
25
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
20
26
github.com/pkg/errors v0.9.1
21
- github.com/pmezard/go-difflib v1.0.0
27
+ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
28
+ github.com/prometheus/alertmanager v0.25.0
29
+ github.com/prometheus/common v0.44.0
30
+ github.com/prometheus/prometheus v0.47.2
22
31
github.com/spf13/cobra v1.6.1
23
32
github.com/spf13/pflag v1.0.5
24
- github.com/stretchr/testify v1.8.2
25
- gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f
33
+ github.com/stretchr/testify v1.8.4
34
+ golang.org/x/exp v0.0.0-20230713183714-613f0c0eb8a1
35
+ gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
36
+ gopkg.in/yaml.v3 v3.0.1
26
37
)
27
38
28
39
require (
29
- github.com/PuerkitoBio/purell v1.1.1 // indirect
30
- github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
31
- github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef // indirect
32
- github.com/go-openapi/analysis v0.20.0 // indirect
33
- github.com/go-openapi/jsonpointer v0.19.5 // indirect
34
- github.com/go-openapi/jsonreference v0.19.5 // indirect
35
- github.com/go-openapi/loads v0.20.2 // indirect
36
- github.com/go-openapi/spec v0.20.3 // indirect
37
- github.com/google/go-cmp v0.5.9 // indirect
40
+ github.com/Azure/azure-sdk-for-go/sdk/azcore v1.7.0 // indirect
41
+ github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.3.0 // indirect
42
+ github.com/Azure/azure-sdk-for-go/sdk/internal v1.3.0 // indirect
43
+ github.com/AzureAD/microsoft-authentication-library-for-go v1.0.0 // indirect
44
+ github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
45
+ github.com/armon/go-metrics v0.4.1 // indirect
46
+ github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
47
+ github.com/aws/aws-sdk-go v1.44.302 // indirect
48
+ github.com/benbjohnson/clock v1.3.0 // indirect
49
+ github.com/beorn7/perks v1.0.1 // indirect
50
+ github.com/cenkalti/backoff/v4 v4.2.1 // indirect
51
+ github.com/cespare/xxhash/v2 v2.2.0 // indirect
52
+ github.com/coreos/go-systemd/v22 v22.5.0 // indirect
53
+ github.com/dennwc/varint v1.0.0 // indirect
54
+ github.com/edsrzf/mmap-go v1.1.0 // indirect
55
+ github.com/go-kit/log v0.2.1 // indirect
56
+ github.com/go-logfmt/logfmt v0.6.0 // indirect
57
+ github.com/go-logr/logr v1.2.4 // indirect
58
+ github.com/go-logr/stdr v1.2.2 // indirect
59
+ github.com/go-openapi/analysis v0.21.4 // indirect
60
+ github.com/go-openapi/jsonpointer v0.20.0 // indirect
61
+ github.com/go-openapi/jsonreference v0.20.2 // indirect
62
+ github.com/go-openapi/loads v0.21.2 // indirect
63
+ github.com/go-openapi/spec v0.20.9 // indirect
64
+ github.com/gofrs/uuid v4.3.1+incompatible // indirect
65
+ github.com/gogo/protobuf v1.3.2 // indirect
66
+ github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
67
+ github.com/golang/snappy v0.0.4 // indirect
68
+ github.com/google/btree v1.0.0 // indirect
38
69
github.com/google/uuid v1.3.0 // indirect
70
+ github.com/grafana/regexp v0.0.0-20221122212121-6b5c0a4cb7fd // indirect
71
+ github.com/hashicorp/errwrap v1.1.0 // indirect
72
+ github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
73
+ github.com/hashicorp/go-msgpack v0.5.3 // indirect
74
+ github.com/hashicorp/go-multierror v1.1.1 // indirect
75
+ github.com/hashicorp/go-sockaddr v1.0.2 // indirect
76
+ github.com/hashicorp/golang-lru v0.6.0 // indirect
77
+ github.com/hashicorp/memberlist v0.5.0 // indirect
39
78
github.com/inconshreveable/mousetrap v1.0.1 // indirect
79
+ github.com/jmespath/go-jmespath v0.4.0 // indirect
40
80
github.com/josharian/intern v1.0.0 // indirect
81
+ github.com/jpillora/backoff v1.0.0 // indirect
82
+ github.com/klauspost/compress v1.16.7 // indirect
83
+ github.com/kr/pretty v0.3.1 // indirect
41
84
github.com/kr/text v0.2.0 // indirect
42
- github.com/mailru/easyjson v0.7.6 // indirect
85
+ github.com/kylelemons/godebug v1.1.0 // indirect
86
+ github.com/mailru/easyjson v0.7.7 // indirect
43
87
github.com/mattn/go-colorable v0.1.13 // indirect
44
- github.com/mattn/go-isatty v0.0.17 // indirect
88
+ github.com/mattn/go-isatty v0.0.19 // indirect
45
89
github.com/mattn/go-runewidth v0.0.9 // indirect
90
+ github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
91
+ github.com/miekg/dns v1.1.55 // indirect
46
92
github.com/mitchellh/mapstructure v1.5.0 // indirect
47
- github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
93
+ github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f // indirect
94
+ github.com/oklog/run v1.1.0 // indirect
48
95
github.com/oklog/ulid v1.3.1 // indirect
49
96
github.com/opentracing/opentracing-go v1.2.0 // indirect
50
- go.mongodb.org/mongo-driver v1.10.0 // indirect
97
+ github.com/prometheus/client_golang v1.16.0 // indirect
98
+ github.com/prometheus/client_model v0.4.0 // indirect
99
+ github.com/prometheus/common/sigv4 v0.1.0 // indirect
100
+ github.com/prometheus/exporter-toolkit v0.10.0 // indirect
101
+ github.com/prometheus/procfs v0.11.0 // indirect
102
+ github.com/rogpeppe/go-internal v1.10.0 // indirect
103
+ github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 // indirect
104
+ github.com/shurcooL/httpfs v0.0.0-20230704072500-f1e31cf0ba5c // indirect
105
+ github.com/shurcooL/vfsgen v0.0.0-20200824052919-0d455de96546 // indirect
106
+ go.mongodb.org/mongo-driver v1.12.0 // indirect
107
+ go.opentelemetry.io/otel v1.16.0 // indirect
108
+ go.opentelemetry.io/otel/metric v1.16.0 // indirect
109
+ go.opentelemetry.io/otel/trace v1.16.0 // indirect
110
+ go.uber.org/atomic v1.11.0 // indirect
111
+ go.uber.org/goleak v1.2.1 // indirect
112
+ golang.org/x/crypto v0.22.0 // indirect
113
+ golang.org/x/mod v0.12.0 // indirect
51
114
golang.org/x/net v0.24.0 // indirect
115
+ golang.org/x/oauth2 v0.10.0 // indirect
116
+ golang.org/x/sync v0.3.0 // indirect
52
117
golang.org/x/sys v0.19.0 // indirect
53
118
golang.org/x/text v0.14.0 // indirect
119
+ golang.org/x/tools v0.11.0 // indirect
120
+ google.golang.org/appengine v1.6.7 // indirect
54
121
google.golang.org/protobuf v1.33.0 // indirect
55
122
gopkg.in/yaml.v2 v2.4.0 // indirect
56
- gopkg.in/yaml.v3 v3.0.1 // indirect
57
123
)
0 commit comments