key-derive 0.1.1

This package can derive keys and perhaps build a service as well.
Documentation
pub use automod::dir;
// pub use easy_ext::ext;
pub use envy::from_env;
pub use eyre::{bail, eyre, Result};
// pub use monostate::MustBe;
pub use hex::FromHex;
pub use hmac::{Hmac, Mac};
pub use once_cell::sync::Lazy;
pub use secp256k1::{PublicKey, Secp256k1, SecretKey};
pub use serde::{Deserialize, Serialize};
pub use sha2::Sha512;
// pub use lazy_static::lazy_static;
#[cfg(test)]
mod test {
    pub use dotenv::dotenv;
    pub use insta::assert_debug_snapshot;
}
#[cfg(test)]
pub use test::*;