Fill out Cargo.tomls

Updated missing fields/sections, even if some won't be used, to 
standardize.

Also made FROST tests feature-gated.
This commit is contained in:
Luke Parker
2022-10-15 23:46:22 -04:00
parent 65664dafa4
commit 19488cf446
21 changed files with 79 additions and 28 deletions

View File

@@ -42,6 +42,7 @@ pub mod algorithm;
pub mod sign;
/// Tests for application-provided curves and algorithms.
#[cfg(any(test, feature = "tests"))]
pub mod tests;
// Validate a map of serialized values to have the expected included participants
@@ -215,6 +216,7 @@ impl<C: Curve> FrostCore<C> {
self.params
}
#[cfg(any(test, feature = "tests"))]
pub(crate) fn secret_share(&self) -> C::F {
self.secret_share
}