Cargo.toml 841 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "cdk-axum"
  3. version = "0.4.0"
  4. edition = "2021"
  5. license = "MIT"
  6. homepage = "https://github.com/cashubtc/cdk"
  7. repository = "https://github.com/cashubtc/cdk.git"
  8. rust-version = "1.63.0" # MSRV
  9. description = "Cashu CDK axum webserver"
  10. [dependencies]
  11. anyhow = "1"
  12. async-trait = "0.1"
  13. axum = "0.6.20"
  14. cdk = { path = "../cdk", version = "0.4.0", default-features = false, features = ["mint"] }
  15. tokio = { version = "1", default-features = false }
  16. tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] }
  17. utoipa = { version = "4", features = ["preserve_order", "preserve_path_order"], optional = true }
  18. futures = { version = "0.3.28", default-features = false }
  19. moka = { version = "0.11.1", features = ["future"] }
  20. serde_json = "1"
  21. paste = "1.0.15"
  22. [features]
  23. swagger = ["cdk/swagger", "dep:utoipa"]