12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- [package]
- name = "cdk-integration-tests"
- version = "0.7.0"
- edition = "2021"
- authors = ["CDK Developers"]
- description = "Core Cashu Development Kit library implementing the Cashu protocol"
- license = "MIT"
- homepage = "https://github.com/cashubtc/cdk"
- repository = "https://github.com/cashubtc/cdk.git"
- rust-version = "1.75.0" # 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 = { path = "../cashu", features = ["mint", "wallet"] }
- cdk = { path = "../cdk", features = ["mint", "wallet", "auth"] }
- cdk-cln = { path = "../cdk-cln" }
- cdk-lnd = { path = "../cdk-lnd" }
- cdk-axum = { path = "../cdk-axum" }
- cdk-sqlite = { path = "../cdk-sqlite" }
- cdk-redb = { path = "../cdk-redb" }
- cdk-fake-wallet = { path = "../cdk-fake-wallet" }
- 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
- [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 = { path = "../cdk", features = ["mint", "wallet"] }
- cdk-axum = { path = "../cdk-axum" }
- cdk-fake-wallet = { path = "../cdk-fake-wallet" }
- tower-http = { workspace = true, features = ["cors"] }
|