Cargo.toml 487 B

1234567891011121314151617181920
  1. [package]
  2. name = "cdk-signatory"
  3. version = "0.1.0"
  4. edition = "2021"
  5. license.workspace = true
  6. homepage.workspace = true
  7. repository.workspace = true
  8. description = "CDK signatory default implementation"
  9. [dependencies]
  10. async-trait = "0.1.83"
  11. bitcoin = { version = "0.32.2", features = [
  12. "base64",
  13. "serde",
  14. "rand",
  15. "rand-std",
  16. ] }
  17. cdk = { path = "../cdk", default-features = false, features = ["mint"] }
  18. tokio = { version = "1.42.0", features = ["full"] }
  19. tracing = "0.1.41"