-
Notifications
You must be signed in to change notification settings - Fork 34
/
go.mod
52 lines (49 loc) · 1.91 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
module github.com/palantir/godel/v2
go 1.21.0
require (
github.com/cheggaaa/pb/v3 v3.0.2
github.com/mholt/archiver/v3 v3.5.1
github.com/nmiyake/pkg/dirs v1.1.0
github.com/nmiyake/pkg/errorstringer v1.1.0
github.com/nmiyake/pkg/gofiles v1.2.0
github.com/palantir/distgo/pkg/git v1.0.0
github.com/palantir/godel/pkg/products/v2 v2.0.0
github.com/palantir/pkg/cobracli v1.2.0
github.com/palantir/pkg/gittest v1.2.0
github.com/palantir/pkg/matcher v1.2.0
github.com/palantir/pkg/pkgpath v1.3.0
github.com/palantir/pkg/signals v1.1.0
github.com/palantir/pkg/specdir v1.2.0
github.com/pkg/errors v0.8.1
github.com/rogpeppe/go-internal v1.7.0
github.com/spf13/cobra v1.8.1
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.9.0
github.com/termie/go-shutil v0.0.0-20140729215957-bcacb06fecae
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/VividCortex/ewma v1.1.1 // indirect
github.com/andybalholm/brotli v1.1.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dsnet/compress v0.0.2-0.20210315054119-f66993602bf5 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/golang/snappy v0.0.3 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/klauspost/compress v1.11.4 // indirect
github.com/klauspost/pgzip v1.2.5 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mattn/go-runewidth v0.0.4 // indirect
github.com/nwaples/rardecode v1.1.0 // indirect
github.com/palantir/pkg v1.1.0 // indirect
github.com/pierrec/lz4/v4 v4.1.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/ulikunitz/xz v0.5.10 // indirect
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
golang.org/x/mod v0.20.0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/sys v0.23.0 // indirect
golang.org/x/tools v0.24.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)