-
Notifications
You must be signed in to change notification settings - Fork 4
/
go.mod
57 lines (54 loc) · 2.27 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
54
55
56
57
module github.com/palantir/godel-refreshables-plugin
go 1.23.0
require (
github.com/dave/jennifer v1.4.1
github.com/palantir/conjure-go-runtime/v2 v2.92.0
github.com/palantir/godel/v2 v2.124.0
github.com/palantir/pkg/cobracli v1.2.0
github.com/palantir/pkg/refreshable v1.5.0
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.8.1
github.com/stretchr/testify v1.10.0
golang.org/x/tools v0.28.0
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/VividCortex/ewma v1.1.1 // indirect
github.com/cheggaaa/pb/v3 v3.0.6 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/kr/pretty v0.2.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/mattn/go-runewidth v0.0.10 // indirect
github.com/nmiyake/pkg/errorstringer v1.1.0 // indirect
github.com/palantir/go-metrics v1.1.1 // indirect
github.com/palantir/pkg v1.1.0 // indirect
github.com/palantir/pkg/bytesbuffers v1.2.0 // indirect
github.com/palantir/pkg/matcher v1.2.0 // indirect
github.com/palantir/pkg/metrics v1.7.0 // indirect
github.com/palantir/pkg/refreshable/v2 v2.0.0 // indirect
github.com/palantir/pkg/retry v1.2.0 // indirect
github.com/palantir/pkg/safejson v1.1.0 // indirect
github.com/palantir/pkg/specdir v1.2.0 // indirect
github.com/palantir/pkg/tlsconfig v1.3.0 // indirect
github.com/palantir/pkg/uuid v1.2.0 // indirect
github.com/palantir/witchcraft-go-error v1.40.0 // indirect
github.com/palantir/witchcraft-go-logging v1.58.0 // indirect
github.com/palantir/witchcraft-go-params v1.37.0 // indirect
github.com/palantir/witchcraft-go-tracing v1.39.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
go.uber.org/zap v1.17.0 // indirect
golang.org/x/mod v0.22.0 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)