mirror of
https://github.com/aljazceru/cdk.git
synced 2026-01-03 21:15:22 +01:00
* feat(cdk-integration-tests): refactor regtest setup and mintd integration - Replace shell-based regtest setup with Rust binary (start_regtest_mints) - Add cdk-mintd crate to workspace and integration tests - Improve environment variable handling for test configurations - Update integration tests to use proper temp directory management - Remove deprecated start_regtest.rs binary - Enhance CLN client connection with retry logic - Simplify regtest shell script (itests.sh) to use new binary - Fix tracing filters and improve error handling in setup - Update dependencies and configurations for integration tests fix: killing chore: comment tests for ci debugging chore: compile Revert "chore: comment tests for ci debugging" This reverts commit bfc594c11cf37caeaa6445cb854ae5567d2da6bd. * chore: sql cipher * fix: removal of sqlite cipher * fix: auth password * refactor(cdk-mintd): improve database password handling and function signatures - Pass database password as parameter instead of parsing CLI args in setup_database - Update function signatures for run_mintd and run_mintd_with_shutdown to accept db_password - Remove direct CLI parsing from database setup logic - Fix auth database initialization to use correct type when sqlcipher feature enabled
71 lines
1.8 KiB
TOML
71 lines
1.8 KiB
TOML
[package]
|
|
name = "cdk-payment-processor"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors = ["CDK Developers"]
|
|
description = "CDK payment processor"
|
|
homepage = "https://github.com/cashubtc/cdk"
|
|
repository = "https://github.com/cashubtc/cdk.git"
|
|
rust-version.workspace = true # MSRV
|
|
license.workspace = true
|
|
readme = "README.md"
|
|
|
|
[[bin]]
|
|
name = "cdk-payment-processor"
|
|
path = "src/bin/payment_processor.rs"
|
|
|
|
[features]
|
|
default = ["cln", "fake", "lnd"]
|
|
bench = []
|
|
cln = ["dep:cdk-cln"]
|
|
fake = ["dep:cdk-fake-wallet"]
|
|
lnd = ["dep:cdk-lnd"]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-trait.workspace = true
|
|
bitcoin.workspace = true
|
|
cashu.workspace = true
|
|
cdk-common = { workspace = true, features = ["mint"] }
|
|
cdk-cln = { workspace = true, optional = true }
|
|
cdk-lnd = { workspace = true, optional = true }
|
|
cdk-fake-wallet = { workspace = true, optional = true }
|
|
clap = { workspace = true, features = ["derive"] }
|
|
serde.workspace = true
|
|
thiserror.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
lightning-invoice.workspace = true
|
|
uuid = { workspace = true }
|
|
utoipa = { workspace = true, optional = true }
|
|
futures.workspace = true
|
|
serde_json.workspace = true
|
|
serde_with.workspace = true
|
|
tonic = { workspace = true, features = ["router"] }
|
|
prost.workspace = true
|
|
tokio-stream.workspace = true
|
|
tokio-util = { workspace = true, default-features = false }
|
|
hex = "0.4"
|
|
lightning = { workspace = true }
|
|
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
tokio = { workspace = true, features = [
|
|
"rt-multi-thread",
|
|
"time",
|
|
"macros",
|
|
"sync",
|
|
"signal"
|
|
] }
|
|
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
tokio = { workspace = true, features = ["rt", "macros", "sync", "time"] }
|
|
|
|
[dev-dependencies]
|
|
rand.workspace = true
|
|
bip39.workspace = true
|
|
|
|
[build-dependencies]
|
|
tonic-build.workspace = true
|