| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- //! 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 Signatory communication
- pub const SIGNATORY_PROTOCOL_VERSION: &str = "1.0.0";
- /// Protocol version for gRPC Payment Processor communication
- pub const PAYMENT_PROCESSOR_PROTOCOL_VERSION: &str = "1.0.0";
- #[cfg(feature = "grpc")]
- pub mod grpc;
- pub mod common;
- pub mod database;
- pub mod error;
- #[cfg(feature = "mint")]
- pub mod melt;
- #[cfg(feature = "mint")]
- pub mod mint;
- #[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;
- /// Re-export parking_lot for reuse
- pub use parking_lot;
|