-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathgo.mod
More file actions
39 lines (35 loc) · 1.25 KB
/
go.mod
File metadata and controls
39 lines (35 loc) · 1.25 KB
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
module github.com/wrouesnel/p2cli
go 1.25.4
require (
github.com/pelletier/go-toml v1.9.5
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/alecthomas/kong v1.13.0
github.com/flosch/pongo2/v6 v6.0.1-0.20230411124213-c84aecb5fa79
github.com/integralist/go-findroot v0.0.0-20160518114804-ac90681525dc
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
github.com/magefile/mage v1.15.0
github.com/mholt/archiver v3.1.1+incompatible
github.com/pkg/errors v0.9.1
github.com/samber/lo v1.52.0
go.uber.org/zap v1.27.1
golang.org/x/mod v0.30.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/dsnet/compress v0.0.1 // indirect
github.com/frankban/quicktest v1.14.3 // indirect
github.com/golang/snappy v1.0.0 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/nwaples/rardecode v1.1.3 // indirect
github.com/pierrec/lz4 v2.6.1+incompatible // indirect
github.com/rogpeppe/go-internal v1.13.1 // indirect
github.com/ulikunitz/xz v0.5.15 // indirect
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/text v0.31.0 // indirect
)