Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement MuSig2 multisignature scheme #80

Merged
merged 10 commits into from
Jan 13, 2022
12 changes: 11 additions & 1 deletion schnorr_fun/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,30 @@
#![no_std]
#![allow(non_snake_case)]
#![doc = include_str!("../README.md")]
#![deny(warnings, missing_docs)]
#![warn(missing_docs)]
// #![deny(warnings, missing_docs)]
LLFourn marked this conversation as resolved.
Show resolved Hide resolved
#[cfg(all(feature = "alloc", not(feature = "std")))]
#[macro_use]
extern crate alloc;
#[cfg(all(feature = "alloc", not(feature = "std")))]
pub(crate) use alloc::vec::Vec;

#[cfg(feature = "std")]
#[macro_use]
extern crate std;
#[cfg(feature = "std")]
pub(crate) use std::vec::Vec;

#[cfg(feature = "serde")]
extern crate serde_crate as serde;

pub use secp256kfun as fun;
pub use secp256kfun::nonce;

// musig needs vecs
#[cfg(feature = "alloc")]
pub mod musig;

mod signature;
pub use signature::Signature;
pub mod adaptor;
Expand Down
Loading