forked from SpectoLabs/hoverfly
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
76 lines (73 loc) · 3.6 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
module github.com/SpectoLabs/hoverfly
go 1.18
require (
github.com/ChrisTrenkamp/xsel v0.9.6
github.com/SpectoLabs/goproxy v0.0.0-20220724221645-71c396c297b7
github.com/SpectoLabs/goproxy/ext v0.0.0-20220724221645-71c396c297b7
github.com/antonholmquist/jason v1.0.1-0.20160829104012-962e09b85496
github.com/aymerick/raymond v2.0.2+incompatible
github.com/beevik/etree v1.1.0
github.com/boltdb/bolt v1.2.1-0.20160424201119-d97499360d1e
github.com/brianvoe/gofakeit/v6 v6.19.0
github.com/codegangsta/negroni v0.1.1-0.20160503152438-24bf3506bb5e
github.com/dghubble/sling v1.2.0
github.com/dsnet/compress v0.0.0-20171208185109-cc9eb1d7ad76
github.com/go-zoo/bone v1.3.0
github.com/golang-jwt/jwt/v4 v4.0.0
github.com/gorilla/mux v0.0.0-20160502175624-9c19ed558d5d
github.com/gorilla/websocket v1.4.2
github.com/hashicorp/golang-lru v0.5.1
github.com/icrowley/fake v0.0.0-20180203215853-4178557ae428
github.com/jackwakefield/gopac v1.0.3-0.20180823145755-c4d2e0b9a672
github.com/kardianos/osext v0.0.0-20151222153229-29ae4ffbc9a6
github.com/mitchellh/go-homedir v0.0.0-20161203194507-b8bc1bf76747
github.com/olekukonko/tablewriter v0.0.0-20170128050532-febf2d34b54a
github.com/onsi/ginkgo v1.16.4
github.com/onsi/gomega v1.23.0
github.com/pborman/uuid v0.0.0-20160216163710-c55201b03606
github.com/phayes/freeport v0.0.0-20141201041908-e7681b376149
github.com/rakyll/statik v0.1.1-0.20160322004535-2940084503a4
github.com/rcrowley/go-metrics v0.0.0-20160226052904-eeba7bd0dd01
github.com/ryanuber/go-glob v0.0.0-20170128012129-256dc444b735
github.com/sirupsen/logrus v1.1.1
github.com/spf13/cobra v0.0.0-20160517171929-f36824430130
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v0.0.0-20160508180713-d8a428b8a306
github.com/tdewolff/minify/v2 v2.12.4
github.com/xeipuuv/gojsonschema v0.0.0-20170225172124-ff0417f4272e
golang.org/x/crypto v0.1.0
gonum.org/v1/gonum v0.7.0
gopkg.in/yaml.v2 v2.4.0
k8s.io/client-go v0.26.1
)
require (
github.com/BurntSushi/toml v1.2.1 // indirect
github.com/corpix/uarand v0.0.0-20170903190822-2b8494104d86 // indirect
github.com/fsnotify/fsnotify v1.5.4 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/google/go-querystring v0.0.0-20160401233042-9235644dd9e5 // indirect
github.com/gorilla/context v0.0.0-20160422134237-a8d44e7d8e4d // indirect
github.com/hashicorp/hcl v0.0.0-20160426221300-9a905a34e628 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect
github.com/magiconair/properties v1.7.0 // indirect
github.com/mattn/go-runewidth v0.0.1 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/nxadm/tail v1.4.8 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/robertkrimen/otto v0.0.0-20180617131154-15f95af6e78d // indirect
github.com/spf13/cast v0.0.0-20160314192028-27b586b42e29 // indirect
github.com/spf13/jwalterweatherman v0.0.0-20160311093646-33c24e77fb80 // indirect
github.com/tdewolff/parse/v2 v2.6.4 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20170225233418-6fe8760cad35 // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20150808065054-e02fc20de94c // indirect
golang.org/x/exp v0.0.0-20190312203227-4b39c73a6495 // indirect
golang.org/x/net v0.3.1-0.20221206200815-1e63c2f08a10 // indirect
golang.org/x/sys v0.3.0 // indirect
golang.org/x/term v0.3.0 // indirect
golang.org/x/text v0.5.0 // indirect
gonum.org/v1/netlib v0.0.0-20200317120129-c5a04cffd98a // indirect
gopkg.in/sourcemap.v1 v1.0.5 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)