-
Notifications
You must be signed in to change notification settings - Fork 5
/
go.mod
32 lines (28 loc) · 963 Bytes
/
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
module github.com/orange-cloudfoundry/gobis
go 1.22.6
require (
github.com/gobwas/glob v0.2.3
github.com/gorilla/mux v1.8.1
github.com/gravitational/trace v1.4.0 // indirect
github.com/mitchellh/mapstructure v1.5.0
github.com/onsi/ginkgo v1.16.5
github.com/onsi/gomega v1.34.2
github.com/sirupsen/logrus v1.9.3
github.com/thoas/go-funk v0.9.3
github.com/vulcand/oxy v1.4.2
golang.org/x/net v0.28.0 // indirect
golang.org/x/sys v0.24.0 // indirect
gopkg.in/yaml.v2 v2.4.0
)
require github.com/google/uuid v1.6.0
require (
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/gorilla/websocket v1.5.3 // indirect
github.com/mailgun/multibuf v0.2.0 // indirect
github.com/nxadm/tail v1.4.11 // indirect
github.com/vulcand/predicate v1.2.0 // indirect
golang.org/x/text v0.17.0 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)