cdk-common 0.16.0-rc.0

CDK common types and traits
Documentation
//! This crate is the base foundation to build things that can interact with the CDK (Cashu
//! Development Kit) and their internal crates.
//!
//! This is meant to contain the shared types, traits and common functions that are used across the
//! internal crates.

#![doc = include_str!("../README.md")]

pub mod task;

/// Protocol version for gRPC Mint RPC communication
pub const MINT_RPC_PROTOCOL_VERSION: &str = "1.0.0";

/// Protocol version for gRPC Payment Processor communication
pub const PAYMENT_PROCESSOR_PROTOCOL_VERSION: &str = "2.0.0";

#[cfg(feature = "grpc")]
pub mod grpc;

pub mod common;
pub mod database;
pub mod error;
pub mod melt;
#[cfg(feature = "mint")]
pub mod mint;
pub mod mint_quote;
#[cfg(feature = "mint")]
pub mod payment;
pub mod pub_sub;
#[cfg(feature = "mint")]
pub mod state;
pub mod subscription;
#[cfg(feature = "wallet")]
pub mod wallet;
pub mod ws;

// re-exporting external crates
pub use bitcoin;
pub use cashu::amount::{self, Amount};
pub use cashu::lightning_invoice::{self, Bolt11Invoice};
pub use cashu::nuts::{self, *};
#[cfg(feature = "mint")]
pub use cashu::quote_id::{self, *};
pub use cashu::{dhke, ensure_cdk, mint_url, secret, util, SECP256K1};
/// Re-export cdk-http-client WebSocket client
#[cfg(feature = "http")]
pub use cdk_http_client::ws as ws_client;
/// Re-export cdk-http-client types
#[cfg(feature = "http")]
pub use cdk_http_client::{
    fetch, HttpClient, HttpClientBuilder, HttpError, RawResponse, RequestBuilder, Response,
};
// Re-export common types
pub use common::FinalizedMelt;
pub use error::Error;
pub use melt::{MeltQuoteRequest, MeltQuoteResponse};
pub use mint_quote::{MintQuoteRequest, MintQuoteResponse};
/// Re-export parking_lot for reuse
pub use parking_lot;