#![doc = include_str!("../README.md")]
#![cfg_attr(not(feature = "std"), no_std)]
#![warn(missing_docs)]
extern crate alloc;
use k256::ecdsa::SigningKey;
mod signature;
mod types;
pub use types::*;
#[cfg(feature = "std")]
mod request;
#[derive(Debug, Clone)]
pub enum Signer {
SecretEccNistP256(SigningKey),
}
#[derive(Debug, Default, Clone, Copy)]
pub struct Ecdsa;