123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- [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", "bip353"] }
- cdk-cln = { workspace = true }
- cdk-lnd = { workspace = true }
- cdk-ldk-node = { workspace = true }
- cdk-axum = { workspace = true, features = ["auth"] }
- cdk-sqlite = { workspace = true }
- cdk-redb = { workspace = true }
- cdk-fake-wallet = { workspace = true }
- cdk-common = { workspace = true, features = ["mint", "wallet", "auth"] }
- cdk-mintd = { workspace = true, features = ["cln", "lnd", "fakewallet", "grpc-processor", "auth", "lnbits", "management-rpc", "sqlite", "postgres", "ldk-node", "prometheus"] }
- 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 = "df81424" }
- lightning-invoice.workspace = true
- ldk-node.workspace = true
- tracing.workspace = true
- tracing-subscriber.workspace = true
- tokio-tungstenite.workspace = true
- tower-http = { workspace = true, features = ["cors"] }
- tower-service = "0.3.3"
- tokio-util.workspace = true
- reqwest.workspace = true
- bitcoin = "0.32.0"
- clap = { workspace = true, features = ["derive"] }
- web-time.workspace = true
- [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"] }
- uuid = { workspace = true, features = ["js"] }
- [dev-dependencies]
- bip39 = { workspace = true, features = ["rand"] }
- anyhow.workspace = true
- cdk-axum = { workspace = true }
- cdk-fake-wallet = { workspace = true }
- cdk-ffi = { workspace = true }
- tower-http = { workspace = true, features = ["cors"] }
|