-
Notifications
You must be signed in to change notification settings - Fork 67
/
go.mod
61 lines (58 loc) · 2.53 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/fnproject/cli
require (
github.com/coreos/go-semver v0.3.0
github.com/fatih/color v0.0.0-20170926111411-5df930a27be2
github.com/fnproject/fn_go v0.8.10
github.com/ghodss/yaml v1.0.0
github.com/giantswarm/semver-bump v0.0.0-20140912095342-88e6c9f2fe39
github.com/go-openapi/runtime v0.19.23
github.com/jmoiron/jsonq v0.0.0-20150511023944-e874b168d07e
github.com/mattn/go-isatty v0.0.3
github.com/mitchellh/go-homedir v1.1.0
github.com/mitchellh/mapstructure v1.3.2
github.com/oracle/oci-go-sdk/v65 v65.41.1
github.com/spf13/viper v1.6.2
github.com/urfave/cli v1.20.0
github.com/xeipuuv/gojsonschema v0.0.0-20180618132009-1d523034197f
golang.org/x/sys v0.17.0
gopkg.in/yaml.v2 v2.3.0
)
require (
github.com/PuerkitoBio/purell v1.1.1 // indirect
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
github.com/asaskevich/govalidator v0.0.0-20200428143746-21a406dcc535 // indirect
github.com/fsnotify/fsnotify v1.4.7 // indirect
github.com/go-openapi/analysis v0.19.10 // indirect
github.com/go-openapi/errors v0.19.8 // indirect
github.com/go-openapi/jsonpointer v0.19.3 // indirect
github.com/go-openapi/jsonreference v0.19.3 // indirect
github.com/go-openapi/loads v0.19.5 // indirect
github.com/go-openapi/spec v0.19.8 // indirect
github.com/go-openapi/strfmt v0.19.8 // indirect
github.com/go-openapi/swag v0.19.11 // indirect
github.com/go-openapi/validate v0.19.12 // indirect
github.com/go-stack/stack v1.8.0 // indirect
github.com/gofrs/flock v0.8.1 // indirect
github.com/golang/mock v1.4.4 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/juju/errgo v0.0.0-20140925100237-08cceb5d0b53 // indirect
github.com/magiconair/properties v1.8.1 // indirect
github.com/mailru/easyjson v0.7.1 // indirect
github.com/mattn/go-colorable v0.0.9 // indirect
github.com/pelletier/go-toml v1.7.0 // indirect
github.com/sony/gobreaker v0.5.0 // indirect
github.com/spf13/afero v1.1.2 // indirect
github.com/spf13/cast v1.3.0 // indirect
github.com/spf13/jwalterweatherman v1.0.0 // indirect
github.com/spf13/pflag v1.0.3 // indirect
github.com/subosito/gotenv v1.2.0 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
go.mongodb.org/mongo-driver v1.4.2 // indirect
golang.org/x/crypto v0.19.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/term v0.17.0 // indirect
golang.org/x/text v0.14.0 // indirect
gopkg.in/ini.v1 v1.51.0 // indirect
)
go 1.17