From 697d0d1baa5970ba98766754b2667749db3b8a8f Mon Sep 17 00:00:00 2001 From: Julian Stecklina Date: Tue, 21 Feb 2023 00:33:56 +0100 Subject: [PATCH] stub: drop unused ed25519-compact dependency --- rust/stub/Cargo.lock | 7 ------- rust/stub/Cargo.toml | 1 - 2 files changed, 8 deletions(-) diff --git a/rust/stub/Cargo.lock b/rust/stub/Cargo.lock index 015c4e3..8ee1a52 100644 --- a/rust/stub/Cargo.lock +++ b/rust/stub/Cargo.lock @@ -58,12 +58,6 @@ dependencies = [ "crypto-common", ] -[[package]] -name = "ed25519-compact" -version = "2.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f2d21333b679bbbac680b3eb45c86937e42f69277028f4e97b599b80b86c253" - [[package]] name = "generic-array" version = "0.14.6" @@ -89,7 +83,6 @@ dependencies = [ name = "lanzaboote_stub" version = "0.1.0" dependencies = [ - "ed25519-compact", "goblin", "log", "sha2", diff --git a/rust/stub/Cargo.toml b/rust/stub/Cargo.toml index c0b96aa..2e5fc70 100644 --- a/rust/stub/Cargo.toml +++ b/rust/stub/Cargo.toml @@ -8,7 +8,6 @@ publish = false uefi = { version = "0.18.0", default-features = false, features = [ "alloc", "exts" ] } uefi-services = { version = "0.15.0", default-features = false, features = [ "panic_handler" ] } log = "0.4.17" -ed25519-compact = { version = "2.0.2", default-features = false, features = [] } goblin = { version = "0.6.0", default-features = false, features = [ "pe64", "alloc" ]} # Use software implementation because the UEFI target seems to need it.