From 923567d08a1ef3c1c448c4c6c6681858ff212769 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Sat, 22 Jul 2023 20:51:17 +0200 Subject: [PATCH] systemd-tool: make integration test pass --- rust/tool/systemd/Cargo.lock | 5 +++++ rust/tool/systemd/Cargo.toml | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/rust/tool/systemd/Cargo.lock b/rust/tool/systemd/Cargo.lock index b650905..06dfb71 100644 --- a/rust/tool/systemd/Cargo.lock +++ b/rust/tool/systemd/Cargo.lock @@ -510,13 +510,18 @@ dependencies = [ "clap", "expect-test", "filetime", + "goblin", "indoc", "lanzaboote_tool", "log", "nix", "rand", + "serde", + "serde_json", + "sha2", "stderrlog", "tempfile", + "walkdir", ] [[package]] diff --git a/rust/tool/systemd/Cargo.toml b/rust/tool/systemd/Cargo.toml index 86a43e4..9e69efb 100644 --- a/rust/tool/systemd/Cargo.toml +++ b/rust/tool/systemd/Cargo.toml @@ -20,3 +20,8 @@ assert_cmd = "2.0.11" expect-test = "1.4.1" filetime = "0.2.21" rand = "0.8.5" +serde_json = "1.0.96" +goblin = "0.6.1" +serde = { version = "1.0.163", features = ["derive"] } +walkdir = "2.3.3" +sha2 = "0.10.6"