-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathgo.mod
41 lines (38 loc) · 1.5 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
module github.com/fnproject/fn_go
go 1.17
require (
github.com/go-openapi/errors v0.19.8
github.com/go-openapi/runtime v0.19.23
github.com/go-openapi/strfmt v0.19.8
github.com/go-openapi/swag v0.19.11
github.com/go-openapi/validate v0.19.12
github.com/golang/mock v1.4.4
github.com/mitchellh/go-homedir v1.1.0
github.com/oracle/oci-go-sdk/v65 v65.41.1
github.com/stretchr/testify v1.6.1
golang.org/x/crypto v0.19.0
golang.org/x/net v0.17.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/davecgh/go-spew v1.1.1 // indirect
github.com/go-openapi/analysis v0.19.10 // 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-stack/stack v1.8.0 // indirect
github.com/gofrs/flock v0.8.1 // indirect
github.com/mailru/easyjson v0.7.1 // indirect
github.com/mitchellh/mapstructure v1.3.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/sony/gobreaker v0.5.0 // indirect
go.mongodb.org/mongo-driver v1.4.2 // indirect
golang.org/x/sys v0.17.0 // indirect
golang.org/x/term v0.17.0 // indirect
golang.org/x/text v0.14.0 // indirect
gopkg.in/yaml.v2 v2.3.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20220521103104-8f96da9f5d5e // indirect
)