mirror of
https://github.com/aljazceru/cdk.git
synced 2026-01-04 21:45:24 +01:00
63 lines
2.1 KiB
TOML
63 lines
2.1 KiB
TOML
[package]
|
|
name = "cdk-integration-tests"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors = ["CDK Developers"]
|
|
description = "Core Cashu Development Kit library implementing the Cashu protocol"
|
|
license.workspace = true
|
|
homepage = "https://github.com/cashubtc/cdk"
|
|
repository = "https://github.com/cashubtc/cdk.git"
|
|
rust-version.workspace = true # MSRV
|
|
|
|
|
|
[features]
|
|
http_subscription = ["cdk/http_subscription"]
|
|
|
|
[dependencies]
|
|
async-trait.workspace = true
|
|
axum.workspace = true
|
|
rand.workspace = true
|
|
bip39 = { workspace = true, features = ["rand"] }
|
|
anyhow.workspace = true
|
|
cashu = { workspace = true, features = ["mint", "wallet"] }
|
|
cdk = { workspace = true, features = ["mint", "wallet", "auth"] }
|
|
cdk-cln = { workspace = true }
|
|
cdk-lnd = { workspace = true }
|
|
cdk-axum = { workspace = true }
|
|
cdk-sqlite = { workspace = true }
|
|
cdk-redb = { workspace = true }
|
|
cdk-fake-wallet = { workspace = true }
|
|
futures = { workspace = true, default-features = false, features = [
|
|
"executor",
|
|
] }
|
|
once_cell.workspace = true
|
|
uuid.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
# ln-regtest-rs = { path = "../../../../ln-regtest-rs" }
|
|
ln-regtest-rs = { git = "https://github.com/thesimplekid/ln-regtest-rs", rev = "ed24716" }
|
|
lightning-invoice.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
tokio-tungstenite.workspace = true
|
|
tower-http = { workspace = true, features = ["cors"] }
|
|
tower-service = "0.3.3"
|
|
reqwest.workspace = true
|
|
bitcoin = "0.32.0"
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
tokio.workspace = true
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
tokio = { workspace = true, features = ["rt", "macros", "sync", "time"] }
|
|
getrandom = { version = "0.2", features = ["js"] }
|
|
instant = { workspace = true, features = ["wasm-bindgen", "inaccurate"] }
|
|
|
|
[dev-dependencies]
|
|
bip39 = { workspace = true, features = ["rand"] }
|
|
anyhow.workspace = true
|
|
cdk = { workspace = true, features = ["mint", "wallet"] }
|
|
cdk-axum = { workspace = true }
|
|
cdk-fake-wallet = { workspace = true }
|
|
tower-http = { workspace = true, features = ["cors"] }
|