lib.rs 141 B

1234567891011
  1. extern crate curve25519_dalek;
  2. pub mod vss;
  3. #[cfg(test)]
  4. mod tests {
  5. #[test]
  6. fn it_works() {
  7. assert_eq!(2 + 2, 4);
  8. }
  9. }