// Copyright (c) Silence Laboratories Pte. Ltd. All Rights Reserved.
// This software is licensed under the Silence Laboratories License Agreement.
//! Threshold Signing Scheme for EdDSA in Rust.
/// The `keygen` module contains the key generation protocol
/// The `sign` module contains the signing protocol
/// Common utility functions and types
pub const VERSION: u16 = 1;
pub use curve25519_dalek;
pub use ;
pub use group;