mirror of
https://github.com/aljazceru/cdk.git
synced 2026-01-01 12:05:15 +01:00
27 lines
980 B
TOML
27 lines
980 B
TOML
[package]
|
|
name = "cdk-strike"
|
|
version = "0.4.0"
|
|
edition = "2021"
|
|
authors = ["CDK Developers"]
|
|
license = "MIT"
|
|
homepage = "https://github.com/cashubtc/cdk"
|
|
repository = "https://github.com/cashubtc/cdk.git"
|
|
rust-version = "1.63.0" # MSRV
|
|
description = "CDK ln backend for Strike api"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
anyhow = "1"
|
|
axum = "0.6.20"
|
|
bitcoin = { version = "0.32.2", default-features = false }
|
|
cdk = { path = "../cdk", version = "0.4.0", default-features = false, features = ["mint"] }
|
|
futures = { version = "0.3.28", default-features = false }
|
|
tokio = { version = "1", default-features = false }
|
|
tokio-util = { version = "0.7.11", default-features = false }
|
|
tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] }
|
|
thiserror = "1"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
# strike-rs = "0.3.0"
|
|
# strike-rs = { path = "../../../../strike-rs" }
|
|
strike-rs = { git = "https://github.com/thesimplekid/strike-rs.git", rev = "c6167ce" }
|