Cargo.toml 736 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "cdk-signatory"
  3. version = "0.6.0"
  4. edition = "2021"
  5. description = "CDK signatory default implementation"
  6. [features]
  7. default = []
  8. grpc = ["dep:tonic", "tokio/full", "dep:prost", "dep:tonic-build"]
  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-common = { path = "../cdk-common", default-features = false, features = [
  18. "mint",
  19. ] }
  20. tracing = "0.1.41"
  21. tokio = { version = "1", default-features = false, features = ["sync"] }
  22. tonic = { version = "0.11.0", optional = true }
  23. prost = { version = "0.12.6", optional = true }
  24. [build-dependencies]
  25. tonic-build = { version = "0.11.0", features = ["prost"], optional = true }