-
Notifications
You must be signed in to change notification settings - Fork 18
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
Showing
3 changed files
with
80 additions
and
1,458 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,46 @@ | ||
module github.com/prometheus-community/promql-langserver | ||
|
||
go 1.13 | ||
go 1.20 | ||
|
||
require ( | ||
github.com/blang/semver v3.5.1+incompatible | ||
github.com/blang/semver v2.2.0+incompatible | ||
github.com/go-kit/kit v0.12.0 | ||
github.com/google/uuid v1.3.0 | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/kelseyhightower/envconfig v1.4.0 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/prometheus/client_golang v1.12.2 | ||
github.com/prometheus/common v0.35.0 | ||
github.com/prometheus/prometheus v0.36.2 | ||
github.com/prometheus/client_golang v1.14.0 | ||
github.com/prometheus/common v0.39.0 | ||
github.com/prometheus/prometheus v0.42.0 | ||
github.com/rakyll/statik v0.1.7 | ||
github.com/sahilm/fuzzy v0.1.0 | ||
github.com/stretchr/testify v1.8.0 | ||
golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f | ||
github.com/stretchr/testify v1.8.1 | ||
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) | ||
|
||
require ( | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dennwc/varint v1.0.0 // indirect | ||
github.com/go-kit/log v0.2.1 // indirect | ||
github.com/go-logfmt/logfmt v0.5.1 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/grafana/regexp v0.0.0-20221122212121-6b5c0a4cb7fd // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/julienschmidt/httprouter v1.3.0 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/kylelemons/godebug v1.1.0 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_model v0.3.0 // indirect | ||
github.com/prometheus/procfs v0.8.0 // indirect | ||
go.uber.org/atomic v1.10.0 // indirect | ||
go.uber.org/goleak v1.2.0 // indirect | ||
golang.org/x/exp v0.0.0-20230124195608-d38c7dcee874 // indirect | ||
golang.org/x/sys v0.4.0 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
) |
Oops, something went wrong.