
This copies the codes and status package from grpc as it is the only references to the grpc project from ttrpc. This will help ensure that API breaking changes in grpc do not affect ttrpc. Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
15 lines
403 B
Modula-2
15 lines
403 B
Modula-2
module github.com/containerd/ttrpc
|
|
|
|
go 1.12
|
|
|
|
require (
|
|
github.com/gogo/protobuf v1.2.1
|
|
github.com/golang/protobuf v1.3.1
|
|
github.com/pkg/errors v0.8.1
|
|
github.com/prometheus/procfs v0.0.0-20190522114515-bc1a522cf7b1
|
|
github.com/sirupsen/logrus v1.4.2
|
|
golang.org/x/sys v0.0.0-20190522044717-8097e1b27ff5
|
|
google.golang.org/genproto v0.0.0-20190522204451-c2c4e71fbf69
|
|
google.golang.org/grpc v1.21.0
|
|
)
|