123456789101112131415161718192021 |
- [package]
- name = "cdk-axum"
- version = "0.4.0"
- edition = "2021"
- license = "MIT"
- homepage = "https://github.com/cashubtc/cdk"
- repository = "https://github.com/cashubtc/cdk.git"
- rust-version = "1.63.0" # MSRV
- description = "Cashu CDK axum webserver"
- [dependencies]
- anyhow = "1"
- async-trait = "0.1"
- axum = "0.6.20"
- cdk = { path = "../cdk", version = "0.4.0", default-features = false, features = ["mint"] }
- tokio = { version = "1", default-features = false }
- tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] }
- futures = { version = "0.3.28", default-features = false }
- moka = { version = "0.11.1", features = ["future"] }
- serde_json = "1"
- paste = "1.0.15"
|