-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
47 lines (42 loc) · 1.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
module github.com/open-cyber-range/vmware-handler
go 1.18
require (
github.com/go-redsync/redsync/v4 v4.7.1
github.com/google/uuid v1.3.1
github.com/tenkoh/goldmark-img64 v0.1.1
github.com/vmware/govmomi v0.32.0
google.golang.org/grpc v1.50.1
google.golang.org/protobuf v1.28.0
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/dlclark/regexp2 v1.4.0 // indirect
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/hashicorp/go-multierror v1.1.0 // indirect
)
require (
github.com/antihax/optional v1.0.0
github.com/dougm/pretty v0.0.0-20171025230240-2ee9d7453c02 // indirect
github.com/iancoleman/strcase v0.2.0
github.com/kr/text v0.2.0 // indirect
github.com/rogpeppe/go-internal v1.8.1 // indirect
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
google.golang.org/appengine v1.4.0 // indirect
)
require (
github.com/alecthomas/chroma v0.10.0
github.com/go-redis/redis/v8 v8.11.5
github.com/golang/protobuf v1.5.2
github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5
github.com/sirupsen/logrus v1.9.0
github.com/yuin/goldmark v1.6.0
github.com/yuin/goldmark-highlighting v0.0.0-20220208100518-594be1970594
golang.org/x/crypto v0.16.0
golang.org/x/net v0.10.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
)