diff --git a/src/agent/Cargo.lock b/src/agent/Cargo.lock index c2c16f3885..d8ad331f36 100644 --- a/src/agent/Cargo.lock +++ b/src/agent/Cargo.lock @@ -1174,7 +1174,8 @@ dependencies = [ [[package]] name = "ttrpc" 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 = [ "byteorder", "libc", diff --git a/src/agent/Cargo.toml b/src/agent/Cargo.toml index 3013b2d107..505313c856 100644 --- a/src/agent/Cargo.toml +++ b/src/agent/Cargo.toml @@ -11,7 +11,7 @@ rustjail = { path = "rustjail" } protocols = { path = "protocols" } netlink = { path = "netlink", features = ["with-log", "with-agent-handler"] } 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" libc = "0.2.58" nix = "0.17.0" diff --git a/src/agent/protocols/Cargo.toml b/src/agent/protocols/Cargo.toml index 7b383a2170..59ab72427a 100644 --- a/src/agent/protocols/Cargo.toml +++ b/src/agent/protocols/Cargo.toml @@ -5,7 +5,7 @@ authors = ["The Kata Containers community "] edition = "2018" [dependencies] -ttrpc = { git = "https://github.com/containerd/ttrpc-rust.git", branch="0.3.0" } +ttrpc = "0.3.0" protobuf = "=2.14.0" futures = "0.1.27"