108 lines
4.4 KiB
Modula-2
108 lines
4.4 KiB
Modula-2
module github.com/prometheus/alertmanager
|
|
|
|
go 1.22
|
|
|
|
require (
|
|
github.com/KimMachineGun/automemlimit v0.6.1
|
|
github.com/alecthomas/kingpin/v2 v2.4.0
|
|
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137
|
|
github.com/aws/aws-sdk-go v1.55.5
|
|
github.com/cenkalti/backoff/v4 v4.3.0
|
|
github.com/cespare/xxhash/v2 v2.3.0
|
|
github.com/coder/quartz v0.1.2
|
|
github.com/emersion/go-smtp v0.21.3
|
|
github.com/go-openapi/analysis v0.23.0
|
|
github.com/go-openapi/errors v0.22.0
|
|
github.com/go-openapi/loads v0.22.0
|
|
github.com/go-openapi/runtime v0.28.0
|
|
github.com/go-openapi/spec v0.21.0
|
|
github.com/go-openapi/strfmt v0.23.0
|
|
github.com/go-openapi/swag v0.23.0
|
|
github.com/go-openapi/validate v0.24.0
|
|
github.com/gofrs/uuid v4.4.0+incompatible
|
|
github.com/gogo/protobuf v1.3.2
|
|
github.com/hashicorp/go-sockaddr v1.0.6
|
|
github.com/hashicorp/golang-lru/v2 v2.0.7
|
|
github.com/hashicorp/memberlist v0.5.1
|
|
github.com/jessevdk/go-flags v1.6.1
|
|
github.com/kylelemons/godebug v1.1.0
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.4
|
|
github.com/oklog/run v1.1.0
|
|
github.com/oklog/ulid v1.3.1
|
|
github.com/prometheus/client_golang v1.20.5
|
|
github.com/prometheus/common v0.60.1
|
|
github.com/prometheus/common/assets v0.2.0
|
|
github.com/prometheus/common/sigv4 v0.1.0
|
|
github.com/prometheus/exporter-toolkit v0.13.1
|
|
github.com/rs/cors v1.11.1
|
|
github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749
|
|
github.com/shurcooL/vfsgen v0.0.0-20200824052919-0d455de96546
|
|
github.com/stretchr/testify v1.9.0
|
|
github.com/trivago/tgo v1.0.7
|
|
github.com/xlab/treeprint v1.2.0
|
|
go.uber.org/atomic v1.11.0
|
|
go.uber.org/automaxprocs v1.6.0
|
|
golang.org/x/mod v0.20.0
|
|
golang.org/x/net v0.30.0
|
|
golang.org/x/text v0.19.0
|
|
golang.org/x/tools v0.24.0
|
|
gopkg.in/telebot.v3 v3.3.8
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
)
|
|
|
|
require (
|
|
github.com/armon/go-metrics v0.3.10 // indirect
|
|
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cilium/ebpf v0.9.1 // indirect
|
|
github.com/containerd/cgroups/v3 v3.0.1 // indirect
|
|
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/docker/go-units v0.5.0 // indirect
|
|
github.com/emersion/go-sasl v0.0.0-20200509203442-7bfe0ed36a21 // indirect
|
|
github.com/go-logr/logr v1.4.1 // indirect
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
|
github.com/go-openapi/jsonpointer v0.21.0 // indirect
|
|
github.com/go-openapi/jsonreference v0.21.0 // indirect
|
|
github.com/godbus/dbus/v5 v5.0.4 // indirect
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
|
github.com/google/btree v1.0.0 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
|
|
github.com/hashicorp/go-msgpack/v2 v2.1.1 // indirect
|
|
github.com/hashicorp/go-multierror v1.1.0 // indirect
|
|
github.com/hashicorp/golang-lru v0.5.4 // indirect
|
|
github.com/jmespath/go-jmespath v0.4.0 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/jpillora/backoff v1.0.0 // indirect
|
|
github.com/julienschmidt/httprouter v1.3.0 // indirect
|
|
github.com/klauspost/compress v1.17.9 // indirect
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
|
github.com/mdlayher/socket v0.4.1 // indirect
|
|
github.com/mdlayher/vsock v1.2.1 // indirect
|
|
github.com/miekg/dns v1.1.41 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
|
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f // indirect
|
|
github.com/opencontainers/runtime-spec v1.0.2 // indirect
|
|
github.com/opentracing/opentracing-go v1.2.0 // indirect
|
|
github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/prometheus/client_model v0.6.1 // indirect
|
|
github.com/prometheus/procfs v0.15.1 // indirect
|
|
github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 // indirect
|
|
github.com/sirupsen/logrus v1.8.1 // indirect
|
|
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
|
|
go.mongodb.org/mongo-driver v1.14.0 // indirect
|
|
go.opentelemetry.io/otel v1.24.0 // indirect
|
|
go.opentelemetry.io/otel/metric v1.24.0 // indirect
|
|
go.opentelemetry.io/otel/trace v1.24.0 // indirect
|
|
golang.org/x/crypto v0.28.0 // indirect
|
|
golang.org/x/oauth2 v0.23.0 // indirect
|
|
golang.org/x/sync v0.8.0 // indirect
|
|
golang.org/x/sys v0.26.0 // indirect
|
|
google.golang.org/protobuf v1.34.2 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|