Cargo.toml 451 B

12345678910111213141516171819
  1. [package]
  2. name = "cdk-signatory"
  3. version = "0.6.0"
  4. edition = "2021"
  5. description = "CDK signatory default implementation"
  6. [dependencies]
  7. async-trait = "0.1.83"
  8. bitcoin = { version = "0.32.2", features = [
  9. "base64",
  10. "serde",
  11. "rand",
  12. "rand-std",
  13. ] }
  14. cdk-common = { path = "../cdk-common", default-features = false, features = [
  15. "mint",
  16. ] }
  17. tracing = "0.1.41"
  18. tokio = { version = "1.21", features = ["rt", "macros", "sync", "time"] }