mirror of
https://github.com/aljazceru/cdk.git
synced 2026-01-17 03:45:52 +01:00
* refactor(cdk): defer BOLT12 invoice fetching to payment execution Move BOLT12 invoice generation from quote creation to payment time, make request_lookup_id optional for offers, and simplify payment structures by removing unnecessary boxing and intermediate storage of invoices.
29 lines
772 B
TOML
29 lines
772 B
TOML
[package]
|
|
name = "cdk-fake-wallet"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors = ["CDK Developers"]
|
|
license.workspace = true
|
|
homepage = "https://github.com/cashubtc/cdk"
|
|
repository = "https://github.com/cashubtc/cdk.git"
|
|
rust-version.workspace = true # MSRV
|
|
description = "CDK fake ln backend"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
async-trait.workspace = true
|
|
bitcoin.workspace = true
|
|
cdk-common = { workspace = true, features = ["mint"] }
|
|
futures.workspace = true
|
|
tokio.workspace = true
|
|
tokio-util.workspace = true
|
|
tracing.workspace = true
|
|
thiserror.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
lightning-invoice.workspace = true
|
|
lightning.workspace = true
|
|
tokio-stream.workspace = true
|
|
reqwest.workspace = true
|
|
uuid.workspace = true
|