From 2bebe0755d0dd374b3c22e4a51f72744b5ecffac Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Fri, 14 Jul 2023 13:10:30 -0400 Subject: [PATCH] Corrections to prior commit --- .github/workflows/tests.yml | 6 +++--- Cargo.lock | 2 +- tests/no-std/Cargo.toml | 2 +- tests/no-std/src/lib.rs | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5fa12f39..d97f690c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -41,14 +41,14 @@ jobs: -p flexible-transcript \ -p ff-group-tests \ -p dalek-ff-group \ - -p ed448 \ + -p minimal-ed448 \ -p ciphersuite \ -p multiexp \ -p schnorr \ -p dleq \ -p dkg \ - -p frost \ - -p schnorrkel + -p modular-frost \ + -p frost-schnorrkel test-coins: runs-on: ubuntu-latest diff --git a/Cargo.lock b/Cargo.lock index 1eaabcf8..ed2ce960 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8690,7 +8690,7 @@ dependencies = [ ] [[package]] -name = "serai-no-std" +name = "serai-no-std-tests" version = "0.1.0" dependencies = [ "ciphersuite", diff --git a/tests/no-std/Cargo.toml b/tests/no-std/Cargo.toml index f8b60d39..65a16053 100644 --- a/tests/no-std/Cargo.toml +++ b/tests/no-std/Cargo.toml @@ -5,7 +5,7 @@ description = "A crate to test no-std builds of Serai crates work" license = "MIT" repository = "https://github.com/kayabaNerve/serai/tree/develop/tests/no-std" authors = ["Luke Parker "] -keywords = ["nostd", "no_std", "alloc", "io"] +keywords = ["nostd", "no_std", "alloc"] edition = "2021" publish = false diff --git a/tests/no-std/src/lib.rs b/tests/no-std/src/lib.rs index aa63223e..a85bf679 100644 --- a/tests/no-std/src/lib.rs +++ b/tests/no-std/src/lib.rs @@ -19,4 +19,4 @@ pub use frost_schnorrkel; */ pub use monero_generators; -// pub use monero_serai; +pub use monero_serai;