From f223b11fca7c987f48c553637cb0dbd37ae5b21e Mon Sep 17 00:00:00 2001 From: Jordan Hand Date: Thu, 22 Feb 2024 11:33:18 -0800 Subject: [PATCH] Update zerocopy to 0.6.6 --- Cargo.lock | 8 ++++---- Cargo.toml | 3 ++- dpe/Cargo.toml | 2 +- tools/Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c8abc5ac..80dccf10 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1378,9 +1378,9 @@ dependencies = [ [[package]] name = "zerocopy" -version = "0.6.5" +version = "0.6.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96f8f25c15a0edc9b07eb66e7e6e97d124c0505435c382fde1ab7ceb188aa956" +checksum = "854e949ac82d619ee9a14c66a1b674ac730422372ccb759ce0c39cabcf2bf8e6" dependencies = [ "byteorder", "zerocopy-derive", @@ -1388,9 +1388,9 @@ dependencies = [ [[package]] name = "zerocopy-derive" -version = "0.6.5" +version = "0.6.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "855e0f6af9cd72b87d8a6c586f3cb583f5cdcc62c2c80869d8cd7e96fdf7ee20" +checksum = "125139de3f6b9d625c39e2efdd73d41bdac468ccd556556440e322be0e1bbd91" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index e82d5d18..62d486f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,4 +12,5 @@ members = [ [workspace.dependencies] caliptra-cfi-lib-git = { git = "https://github.com/chipsalliance/caliptra-cfi.git", package = "caliptra-cfi-lib-git", rev = "9f315fcf11fe006e95e62149f54f98620e5244e7", default-features = false, features = ["cfi", "cfi-counter" ] } -caliptra-cfi-derive-git = { git = "https://github.com/chipsalliance/caliptra-cfi.git", package = "caliptra-cfi-derive-git", rev = "9f315fcf11fe006e95e62149f54f98620e5244e7"} \ No newline at end of file +caliptra-cfi-derive-git = { git = "https://github.com/chipsalliance/caliptra-cfi.git", package = "caliptra-cfi-derive-git", rev = "9f315fcf11fe006e95e62149f54f98620e5244e7"} +zerocopy = "0.6.6" \ No newline at end of file diff --git a/dpe/Cargo.toml b/dpe/Cargo.toml index dead89e5..18e46b1c 100644 --- a/dpe/Cargo.toml +++ b/dpe/Cargo.toml @@ -32,7 +32,7 @@ constant_time_eq = "0.3.0" crypto = {path = "../crypto", default-features = false} platform = {path = "../platform", default-features = false} ufmt = { git = "https://github.com/korran/ufmt.git", rev = "1d0743c1ffffc68bc05ca8eeb81c166192863f33", features = ["inline"] } -zerocopy = "0.6.1" +zerocopy.workspace = true zeroize = { version = "1.6.0", default-features = false, features = ["zeroize_derive"] } cfg-if = "1.0.0" diff --git a/tools/Cargo.toml b/tools/Cargo.toml index 05bb0d32..ea63cfc1 100644 --- a/tools/Cargo.toml +++ b/tools/Cargo.toml @@ -21,7 +21,7 @@ dpe = {path = "../dpe", default-features = false, features = ["no-cfi"]} crypto = {path = "../crypto", default-features = false, features = ["deterministic_rand", "openssl"]} pem = "2" platform = {path = "../platform", default-features = false, features = ["openssl"]} -zerocopy = "0.6.1" +zerocopy.workspace = true [[bin]] name = "sample_dpe_cert"