From 190e9d5f7bb11e925edf8345e9a809b2f0d0a34b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:13:02 +0000 Subject: [PATCH] build(deps): bump sgx from 0.5.0 to 0.6.0 Bumps [sgx](https://github.com/enarx/sgx) from 0.5.0 to 0.6.0. - [Release notes](https://github.com/enarx/sgx/releases) - [Commits](https://github.com/enarx/sgx/compare/v0.5.0...v0.6.0) --- updated-dependencies: - dependency-name: sgx dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- crates/sgx_validation/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 96b04f75..36d76fb0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1001,9 +1001,9 @@ dependencies = [ [[package]] name = "sgx" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "536c96a764daacb2abe1e22834d5f48c9e285e7cf3683fb40e9d426ea0907437" +checksum = "6bb53446a28e5fdc95b554916aca5f3d9317e8f4d3862285ddd4e51cf521e820" dependencies = [ "bitflags", "x86_64", diff --git a/Cargo.toml b/Cargo.toml index 5cc7db1e..677b4540 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ cryptography = { path = "crates/cryptography" } der = { version = "0.6", features = ["std"], default-features = false } zeroize = { version = "^1.5.2", features = ["alloc"], default-features = false } flagset = { version = "0.4.3", default-features = false} -sgx = { version = "0.5.0", default-features = false } +sgx = { version = "0.6.0", default-features = false } tracing-subscriber = { version="^0.3.15", features = ["env-filter", "json", "fmt"], default-features = false } tower-http = { version = "^0.3.0", features = ["trace"], default-features = false } diff --git a/crates/sgx_validation/Cargo.toml b/crates/sgx_validation/Cargo.toml index 9291343d..9d648499 100644 --- a/crates/sgx_validation/Cargo.toml +++ b/crates/sgx_validation/Cargo.toml @@ -9,7 +9,7 @@ description = "Intel SGX Attestation validation library for Steward" cryptography = { path = "../cryptography" } anyhow = { version = "^1.0.55", default-features = false } der = { version = "0.6", features = ["std"], default-features = false } -sgx = { version = "0.5.0", default-features = false } +sgx = { version = "0.6.0", default-features = false } [dev-dependencies] testaso = { version = "0.1", default-features = false }