|
1 | 1 | module github.com/prometheus-community/promql-langserver
|
2 | 2 |
|
3 |
| -go 1.13 |
| 3 | +go 1.20 |
4 | 4 |
|
5 | 5 | require (
|
6 |
| - github.com/blang/semver v3.5.1+incompatible |
| 6 | + github.com/blang/semver v2.2.0+incompatible |
7 | 7 | github.com/go-kit/kit v0.12.0
|
8 | 8 | github.com/google/uuid v1.3.0
|
9 |
| - github.com/hashicorp/errwrap v1.1.0 // indirect |
10 | 9 | github.com/kelseyhightower/envconfig v1.4.0
|
11 | 10 | github.com/pkg/errors v0.9.1
|
12 |
| - github.com/prometheus/client_golang v1.12.2 |
13 |
| - github.com/prometheus/common v0.35.0 |
14 |
| - github.com/prometheus/prometheus v0.36.2 |
| 11 | + github.com/prometheus/client_golang v1.14.0 |
| 12 | + github.com/prometheus/common v0.39.0 |
| 13 | + github.com/prometheus/prometheus v0.42.0 |
15 | 14 | github.com/rakyll/statik v0.1.7
|
16 | 15 | github.com/sahilm/fuzzy v0.1.0
|
17 |
| - github.com/stretchr/testify v1.8.0 |
18 |
| - golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f |
| 16 | + github.com/stretchr/testify v1.8.1 |
| 17 | + golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 |
19 | 18 | gopkg.in/yaml.v3 v3.0.1
|
20 | 19 | )
|
| 20 | + |
| 21 | +require ( |
| 22 | + github.com/beorn7/perks v1.0.1 // indirect |
| 23 | + github.com/cespare/xxhash/v2 v2.2.0 // indirect |
| 24 | + github.com/davecgh/go-spew v1.1.1 // indirect |
| 25 | + github.com/dennwc/varint v1.0.0 // indirect |
| 26 | + github.com/go-kit/log v0.2.1 // indirect |
| 27 | + github.com/go-logfmt/logfmt v0.5.1 // indirect |
| 28 | + github.com/gogo/protobuf v1.3.2 // indirect |
| 29 | + github.com/golang/protobuf v1.5.2 // indirect |
| 30 | + github.com/grafana/regexp v0.0.0-20221122212121-6b5c0a4cb7fd // indirect |
| 31 | + github.com/json-iterator/go v1.1.12 // indirect |
| 32 | + github.com/julienschmidt/httprouter v1.3.0 // indirect |
| 33 | + github.com/kr/text v0.2.0 // indirect |
| 34 | + github.com/kylelemons/godebug v1.1.0 // indirect |
| 35 | + github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect |
| 36 | + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
| 37 | + github.com/modern-go/reflect2 v1.0.2 // indirect |
| 38 | + github.com/pmezard/go-difflib v1.0.0 // indirect |
| 39 | + github.com/prometheus/client_model v0.3.0 // indirect |
| 40 | + github.com/prometheus/procfs v0.8.0 // indirect |
| 41 | + go.uber.org/atomic v1.10.0 // indirect |
| 42 | + go.uber.org/goleak v1.2.0 // indirect |
| 43 | + golang.org/x/exp v0.0.0-20230124195608-d38c7dcee874 // indirect |
| 44 | + golang.org/x/sys v0.4.0 // indirect |
| 45 | + google.golang.org/protobuf v1.28.1 // indirect |
| 46 | +) |
0 commit comments