From c091b8691985be110657fe106fd11bf0848c663e Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Thu, 27 Jul 2023 22:09:04 -0400 Subject: [PATCH] Correct reproducible-runtime deny definition --- deny.toml | 1 + tests/reproducible-runtime/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/deny.toml b/deny.toml index 79ce5989..772538e2 100644 --- a/deny.toml +++ b/deny.toml @@ -69,6 +69,7 @@ exceptions = [ { allow = ["AGPL-3.0"], name = "serai-docker-tests" }, { allow = ["AGPL-3.0"], name = "serai-message-queue-tests" }, { allow = ["AGPL-3.0"], name = "serai-processor-tests" }, + { allow = ["AGPL-3.0"], name = "serai-reproducible-runtime-tests" }, ] [[licenses.clarify]] diff --git a/tests/reproducible-runtime/Cargo.toml b/tests/reproducible-runtime/Cargo.toml index 44808a49..581b2962 100644 --- a/tests/reproducible-runtime/Cargo.toml +++ b/tests/reproducible-runtime/Cargo.toml @@ -1,7 +1,7 @@ [package] -name = "serai-reproducible-runtime" +name = "serai-reproducible-runtime-tests" version = "0.1.0" -description = "Tests the Serai runtimee can be reproducibly built" +description = "Tests the Serai runtime can be reproducibly built" license = "AGPL-3.0-only" repository = "https://github.com/serai-dex/serai/tree/develop/tests/reproducible-runtime" authors = ["Luke Parker "]