-
Notifications
You must be signed in to change notification settings - Fork 45
/
go.mod
53 lines (49 loc) · 1.83 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
45
46
47
48
49
50
51
52
53
module github.com/konveyor/analyzer-lsp
go 1.21
require (
github.com/PaesslerAG/gval v1.2.2
github.com/antchfx/jsonquery v1.3.0
github.com/antchfx/xmlquery v1.3.12
github.com/bombsimon/logrusr/v3 v3.0.0
github.com/go-logr/logr v1.2.3
github.com/golang-jwt/jwt/v5 v5.2.1
github.com/jhump/protoreflect v1.16.0
github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5
github.com/sirupsen/logrus v1.9.0
github.com/spf13/cobra v1.7.0
github.com/swaggest/jsonschema-go v0.3.64
github.com/swaggest/openapi-go v0.2.45
go.lsp.dev/uri v0.3.0
go.opentelemetry.io/otel/trace v1.11.2
golang.org/x/oauth2 v0.16.0
google.golang.org/grpc v1.62.1
google.golang.org/protobuf v1.33.1-0.20240408130810-98873a205002
gopkg.in/yaml.v2 v2.4.0
)
require (
cloud.google.com/go/compute v1.23.3 // indirect
cloud.google.com/go/compute/metadata v0.2.3 // indirect
github.com/bufbuild/protocompile v0.10.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/swaggest/refl v1.3.0 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
)
require (
github.com/antchfx/xpath v1.2.4
github.com/cbroglie/mustache v1.3.0
github.com/go-logr/stdr v1.2.2 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/hashicorp/go-version v1.6.0
github.com/shopspring/decimal v1.3.1 // indirect
go.opentelemetry.io/otel v1.11.2
go.opentelemetry.io/otel/exporters/jaeger v1.11.2
go.opentelemetry.io/otel/sdk v1.11.2
golang.org/x/net v0.22.0
golang.org/x/sys v0.22.0 // indirect
golang.org/x/text v0.14.0 // indirect
)