mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-04-30 12:44:39 +00:00
agent: consume ttrpc crate from crates.io
The ttrpc v0.3.0 has been published to crates.io, so consume from crates.io. Fixes: #1213 Signed-off-by: Liu Jiang <gerry@linux.alibaba.com>
This commit is contained in:
parent
6181570ccc
commit
406a91ffdd
3
src/agent/Cargo.lock
generated
3
src/agent/Cargo.lock
generated
@ -1198,7 +1198,8 @@ dependencies = [
|
|||||||
[[package]]
|
[[package]]
|
||||||
name = "ttrpc"
|
name = "ttrpc"
|
||||||
version = "0.3.0"
|
version = "0.3.0"
|
||||||
source = "git+https://github.com/containerd/ttrpc-rust.git?branch=0.3.0#ba1efe3bbb8f8af4895b7623ed1d11561e70e566"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "bfa9da24c351f0feef5e66c0b28c18373a7ef3e1bfdfd5852170de494f9bf870"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"byteorder",
|
"byteorder",
|
||||||
"libc",
|
"libc",
|
||||||
|
@ -11,7 +11,7 @@ rustjail = { path = "rustjail" }
|
|||||||
protocols = { path = "protocols" }
|
protocols = { path = "protocols" }
|
||||||
netlink = { path = "netlink", features = ["with-log", "with-agent-handler"] }
|
netlink = { path = "netlink", features = ["with-log", "with-agent-handler"] }
|
||||||
lazy_static = "1.3.0"
|
lazy_static = "1.3.0"
|
||||||
ttrpc = { git = "https://github.com/containerd/ttrpc-rust.git", branch="0.3.0" }
|
ttrpc = "0.3.0"
|
||||||
protobuf = "=2.14.0"
|
protobuf = "=2.14.0"
|
||||||
libc = "0.2.58"
|
libc = "0.2.58"
|
||||||
nix = "0.17.0"
|
nix = "0.17.0"
|
||||||
|
@ -5,7 +5,7 @@ authors = ["The Kata Containers community <kata-dev@lists.katacontainers.io>"]
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ttrpc = { git = "https://github.com/containerd/ttrpc-rust.git", branch="0.3.0" }
|
ttrpc = "0.3.0"
|
||||||
protobuf = "=2.14.0"
|
protobuf = "=2.14.0"
|
||||||
futures = "0.1.27"
|
futures = "0.1.27"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user