Cargo.toml 692 B

123456789101112131415161718192021
  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. futures = { version = "0.3.28", default-features = false }
  18. moka = { version = "0.11.1", features = ["future"] }
  19. serde_json = "1"
  20. paste = "1.0.15"