diff --git a/src/runtime-rs/Cargo.lock b/src/runtime-rs/Cargo.lock index c55b571a66..352d21cd6e 100644 --- a/src/runtime-rs/Cargo.lock +++ b/src/runtime-rs/Cargo.lock @@ -161,8 +161,9 @@ checksum = "2382f75942f4b3be3690fe4f86365e9c853c1587d6ee58212cebf6e2a9ccd101" [[package]] name = "containerd-shim-protos" -version = "0.1.2" -source = "git+https://github.com/containerd/rust-extensions.git?rev=c0baac598fc3ad62f651e8aae8de15db2ce5695c#c0baac598fc3ad62f651e8aae8de15db2ce5695c" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "077ec778a0835d9d85502e8535362130187759b69eddabe2bdb3a68ffb575bd0" dependencies = [ "async-trait", "protobuf", diff --git a/src/runtime-rs/crates/shim/Cargo.toml b/src/runtime-rs/crates/shim/Cargo.toml index c208eb3187..e2c07e4e28 100644 --- a/src/runtime-rs/crates/shim/Cargo.toml +++ b/src/runtime-rs/crates/shim/Cargo.toml @@ -15,9 +15,7 @@ path = "src/bin/main.rs" [dependencies] anyhow = "^1.0" backtrace = {version = ">=0.3.35", features = ["libunwind", "libbacktrace", "std"], default-features = false} -# TODO: change to version after release -# issue: https://github.com/kata-containers/kata-containers/issues/3866 -containerd-shim-protos = { git="https://github.com/containerd/rust-extensions.git", rev = "c0baac598fc3ad62f651e8aae8de15db2ce5695c", features = ["async"]} +containerd-shim-protos = { version = "0.2.0", features = ["async"]} go-flag = "0.1.0" libc = "0.2.108" log = "0.4.14"