-
Notifications
You must be signed in to change notification settings - Fork 62
/
go.mod
61 lines (56 loc) · 2.42 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
59
60
61
module github.com/develar/app-builder
go 1.21
require (
github.com/aclements/go-rabin v0.0.0-20170911142644-d0b643ea1a4c
github.com/alecthomas/kingpin v2.2.6+incompatible
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
github.com/alessio/shellescape v0.0.0-20190409004728-b115ca0f9053 // indirect
github.com/aws/aws-sdk-go v1.45.7
github.com/biessek/golang-ico v0.0.0-20180326222316-d348d9ea4670
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect
github.com/develar/errors v0.9.0
github.com/develar/go-fs-util v0.0.0-20190620175131-69a2d4542206
github.com/develar/go-pkcs12 v0.0.0-20181115143544-54baa4f32c6a
github.com/disintegration/imaging v1.6.2
github.com/dustin/go-humanize v1.0.1
github.com/golang/protobuf v1.3.2 // indirect
github.com/json-iterator/go v1.1.12
github.com/jsummers/gobmp v0.0.0-20230614200233-a9de23ed2e25 // indirect
github.com/mattn/go-colorable v0.1.13
github.com/mattn/go-isatty v0.0.19
github.com/mcuadros/go-version v0.0.0-20190830083331-035f6764e8d2
github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1
github.com/mitchellh/go-homedir v1.1.0
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/onsi/ginkgo v1.8.0
github.com/onsi/gomega v1.5.0
github.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c
github.com/phayes/permbits v0.0.0-20190612203442-39d7c581d2ee
github.com/pkg/errors v0.9.1
github.com/pkg/xattr v0.4.9
github.com/segmentio/ksuid v1.0.4
github.com/zieckey/goini v0.0.0-20180118150432-0da17d361d26
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.25.0
golang.org/x/image v0.12.0 // indirect
golang.org/x/sys v0.12.0 // indirect
gopkg.in/alessio/shellescape.v1 v1.0.0-20170105083845-52074bc9df61
howett.net/plist v1.0.0
)
require (
github.com/hpcloud/tail v1.0.0 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/samber/lo v1.38.1
golang.org/x/net v0.6.0 // indirect
golang.org/x/text v0.13.0 // indirect
gopkg.in/fsnotify.v1 v1.4.7 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v2 v2.2.8 // indirect
)
require (
github.com/kr/pretty v0.3.1 // indirect
golang.org/x/exp v0.0.0-20220303212507-bbda1eaf7a17 // indirect
)
//replace github.com/develar/go-pkcs12 => ../go-pkcs12