From aa581f4b28ed45921d74718a9423b78009c94a1b Mon Sep 17 00:00:00 2001 From: Derek Lee Date: Mon, 1 Aug 2022 11:24:45 -0700 Subject: [PATCH] cargo.toml: Add oci to src/libs workplace Adds oci under the src/libs workplace. oci shares a Cargo.lock file with the rest of src/libs but was not listed as a member of the workspace. There is no clear reason why it is not included in the workspace, so adding it so cargo-deny stop complaining Signed-off-by: Derek Lee --- src/libs/Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/libs/Cargo.toml b/src/libs/Cargo.toml index b173ae7b77..62372e816a 100644 --- a/src/libs/Cargo.toml +++ b/src/libs/Cargo.toml @@ -1,11 +1,11 @@ [workspace] members = [ - "logging", - "kata-types", "kata-sys-util", - "safe-path", - "protocols", + "kata-types", + "logging", "oci", + "protocols", + "safe-path", "test-utils", ] resolver = "2"