mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-07-31 07:19:06 +00:00
agent: fix the issue of building error with latest ttrpc
Since the ttrpc upgraded with async supported, which isn't compatible with current agent, thus it's better to change the dependency to a stable branch. Fixes: #229 Signed-off-by: fupan.lfp <fupan.lfp@antfin.com>
This commit is contained in:
parent
478dfa4b52
commit
08e3d259ca
@ -12,7 +12,7 @@ protocols = { path = "protocols" }
|
||||
netlink = { path = "netlink" }
|
||||
lazy_static = "1.3.0"
|
||||
error-chain = "0.12.1"
|
||||
ttrpc = { git = "https://github.com/containerd/ttrpc-rust.git" }
|
||||
ttrpc = { git = "https://github.com/containerd/ttrpc-rust.git", branch="0.3.0" }
|
||||
protobuf = "=2.14.0"
|
||||
libc = "0.2.58"
|
||||
nix = "0.17.0"
|
||||
|
@ -5,6 +5,6 @@ authors = ["Hui Zhu <teawater@hyper.sh>"]
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
ttrpc = { git = "https://github.com/containerd/ttrpc-rust.git" }
|
||||
ttrpc = { git = "https://github.com/containerd/ttrpc-rust.git", branch="0.3.0" }
|
||||
protobuf = "=2.14.0"
|
||||
futures = "0.1.27"
|
||||
|
Loading…
Reference in New Issue
Block a user