Cargo.toml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. [package]
  2. name = "cdk-common"
  3. version = "0.6.0"
  4. edition = "2021"
  5. description = "CDK shared types and crypto utilities"
  6. rust-version = "1.63.0" # MSRV
  7. [features]
  8. swagger = ["dep:utoipa"]
  9. bench = []
  10. [dependencies]
  11. async-trait = "0.1"
  12. bitcoin = { version = "0.32.2", features = [
  13. "base64",
  14. "serde",
  15. "rand",
  16. "rand-std",
  17. ] }
  18. cbor-diag = "0.1.12"
  19. ciborium = { version = "0.2.2", default-features = false, features = ["std"] }
  20. once_cell = "1.20.2"
  21. serde = { version = "1.0.216", features = ["derive"] }
  22. lightning-invoice = { version = "0.32.0", features = ["serde", "std"] }
  23. thiserror = "2.0.9"
  24. tracing = "0.1.41"
  25. url = "2.3"
  26. uuid = { version = "1", features = ["v4", "serde"] }
  27. utoipa = { version = "4", optional = true }
  28. futures = "0.3.31"
  29. anyhow = "1.0.95"
  30. reqwest = { version = "0.12", default-features = false, features = [
  31. "json",
  32. "rustls-tls",
  33. "rustls-tls-native-roots",
  34. "socks",
  35. "zstd",
  36. "brotli",
  37. "gzip",
  38. "deflate",
  39. ] }
  40. serde_json = "1.0.134"
  41. serde_with = "3"
  42. [target.'cfg(target_arch = "wasm32")'.dependencies]
  43. instant = { version = "0.1", features = ["wasm-bindgen", "inaccurate"] }
  44. [dev-dependencies]
  45. rand = "0.8.5"
  46. bip39 = "2.0"