-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
45 lines (40 loc) · 1.47 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
module github.com/rohitramu/kpm
go 1.19
require (
github.com/Masterminds/sprig v2.22.0+incompatible
github.com/emirpasic/gods v1.18.1
github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32
github.com/otiai10/copy v1.14.0
github.com/spf13/cobra v1.8.1
github.com/vishalkuo/bimap v0.0.0-20230512162637-a5362d2f581f
golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1
)
require (
golang.org/x/sync v0.3.0 // indirect
golang.org/x/sys v0.15.0 // indirect
)
require (
github.com/gopherjs/gopherjs v1.17.2 // indirect
github.com/jtolds/gls v4.20.0+incompatible // indirect
github.com/smarty/assertions v1.15.0 // indirect
github.com/smartystreets/goconvey v1.8.1
)
require (
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Masterminds/semver v1.5.0 // indirect
github.com/caarlos0/env/v9 v9.0.0
github.com/google/uuid v1.3.0 // indirect
github.com/huandu/xstrings v1.3.2 // indirect
github.com/imdario/mergo v0.3.12 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/testify v1.8.4 // indirect
golang.org/x/crypto v0.17.0 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1
)