forked from vhive-serverless/vSwarm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
23 lines (20 loc) · 1006 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
module github.com/ease-lab/vhive/examples/invoker
go 1.16
replace (
github.com/ease-lab/vhive/examples/endpoint => ../endpoint
github.com/ease-lab/vhive/utils/benchmarking/eventing => ../benchmarking_eventing
github.com/ease-lab/vhive/utils/tracing/go => ../../utils/tracing/go
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc => go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.20.0
)
require (
github.com/containerd/containerd v1.5.8
github.com/ease-lab/vhive/examples/endpoint v0.0.0-00010101000000-000000000000
github.com/ease-lab/vhive/utils/benchmarking/eventing v0.0.0-00010101000000-000000000000
github.com/ease-lab/vhive/utils/tracing/go v0.0.0-20210701094502-1e364449633f
github.com/golang/protobuf v1.5.2
github.com/google/uuid v1.2.0
github.com/sirupsen/logrus v1.8.1
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.20.0
google.golang.org/grpc v1.39.0
google.golang.org/protobuf v1.27.1
)