lib.rs 160 B

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