-
Notifications
You must be signed in to change notification settings - Fork 53
/
go.mod
58 lines (55 loc) · 2.34 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
58
module github.com/cashapp/hermit
go 1.23
require (
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d
github.com/alecthomas/assert/v2 v2.1.0
github.com/alecthomas/colour v0.1.0
github.com/alecthomas/hcl v0.5.4
github.com/alecthomas/kong v0.5.0
github.com/alecthomas/participle/v2 v2.0.0-beta.5
github.com/alecthomas/repr v0.1.0
github.com/andybalholm/cascadia v1.3.2
github.com/antchfx/htmlquery v1.2.4
github.com/antchfx/xpath v1.2.0
github.com/avvmoto/buf-readerat v0.0.0-20171115124131-a17c8cb89270
github.com/blakesmith/ar v0.0.0-20190502131153-809d4375e1fb
github.com/creack/pty v1.1.18
github.com/gabriel-vasile/mimetype v1.4.2-0.20220907190543-d9466a5f6b0e
github.com/gobwas/glob v0.2.3
github.com/gofrs/flock v0.8.1
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
github.com/klauspost/compress v1.15.1
github.com/mattn/go-isatty v0.0.14
github.com/mitchellh/go-ps v1.0.0
github.com/otiai10/copy v1.14.0
github.com/posener/complete v1.2.3
github.com/qdm12/reprint v0.0.0-20200326205758-722754a53494
github.com/saracen/go7z v0.0.0-20191010121135-9c09b6bd7fda
github.com/sassoftware/go-rpmutils v0.2.0
github.com/willabides/kongplete v0.3.0
github.com/willdonnelly/passwd v0.0.0-20141013001024-7935dab3074c
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8
golang.org/x/net v0.9.0
golang.org/x/sys v0.7.0
golang.org/x/term v0.7.0
howett.net/plist v1.0.0
mvdan.cc/sh v2.6.4+incompatible
)
require (
github.com/DataDog/zstd v1.5.0 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/hexops/gotextdiff v1.0.3 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/riywo/loginshell v0.0.0-20200815045211-7d26008be1ab // indirect
github.com/saracen/go7z-fixtures v0.0.0-20190623165746-aa6b8fba1d2f // indirect
github.com/saracen/solidblock v0.0.0-20190426153529-45df20abab6f // indirect
github.com/ulikunitz/xz v0.5.10 // indirect
golang.org/x/crypto v0.0.0-20220214200702-86341886e292 // indirect
golang.org/x/sync v0.3.0 // indirect
golang.org/x/text v0.9.0 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
)