1234567891011121314151617181920 |
- [package]
- name = "cdk-signatory"
- version = "0.1.0"
- edition = "2021"
- license.workspace = true
- homepage.workspace = true
- repository.workspace = true
- description = "CDK signatory default implementation"
- [dependencies]
- async-trait = "0.1.83"
- bitcoin = { version = "0.32.2", features = [
- "base64",
- "serde",
- "rand",
- "rand-std",
- ] }
- cdk = { path = "../cdk", default-features = false, features = ["mint"] }
- tokio = { version = "1.42.0", features = ["full"] }
- tracing = "0.1.41"
|