Cargo.toml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. [package]
  2. name = "cdk"
  3. version = "0.7.0"
  4. edition = "2021"
  5. authors = ["CDK Developers"]
  6. description = "Core Cashu Development Kit library implementing the Cashu protocol"
  7. homepage = "https://github.com/cashubtc/cdk"
  8. repository = "https://github.com/cashubtc/cdk.git"
  9. rust-version = "1.63.0" # MSRV
  10. license = "MIT"
  11. [features]
  12. default = ["mint", "wallet"]
  13. mint = ["dep:futures", "cdk-common/mint"]
  14. # We do not commit to a MSRV with swagger enabled
  15. swagger = ["mint", "dep:utoipa", "cdk-common/swagger"]
  16. wallet = ["dep:reqwest", "cdk-common/wallet"]
  17. bench = []
  18. http_subscription = []
  19. [dependencies]
  20. cdk-common = { path = "../cdk-common", version = "0.7.0" }
  21. cbor-diag = "0.1.12"
  22. async-trait = "0.1"
  23. anyhow = { version = "1.0.43", features = ["backtrace"] }
  24. bitcoin = { version = "0.32.2", features = [
  25. "base64",
  26. "serde",
  27. "rand",
  28. "rand-std",
  29. ] }
  30. ciborium = { version = "0.2.2", default-features = false, features = ["std"] }
  31. lightning-invoice = { version = "0.32.0", features = ["serde", "std"] }
  32. regex = "1"
  33. reqwest = { version = "0.12", default-features = false, features = [
  34. "json",
  35. "rustls-tls",
  36. "rustls-tls-native-roots",
  37. "socks",
  38. "zstd",
  39. "brotli",
  40. "gzip",
  41. "deflate",
  42. ], optional = true }
  43. serde = { version = "1", default-features = false, features = ["derive"] }
  44. serde_json = "1"
  45. serde_with = "3"
  46. tracing = { version = "0.1", default-features = false, features = [
  47. "attributes",
  48. "log",
  49. ] }
  50. thiserror = "1"
  51. futures = { version = "0.3.28", default-features = false, optional = true, features = [
  52. "alloc",
  53. ] }
  54. url = "2.3"
  55. utoipa = { version = "4", optional = true }
  56. uuid = { version = "=1.12.1", features = ["v4", "serde"] }
  57. # -Z minimal-versions
  58. sync_wrapper = "0.1.2"
  59. bech32 = "0.9.1"
  60. [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
  61. tokio = { version = "1.21", features = [
  62. "rt-multi-thread",
  63. "time",
  64. "macros",
  65. "sync",
  66. ] }
  67. getrandom = { version = "0.2" }
  68. tokio-tungstenite = { version = "0.19.0", features = [
  69. "rustls",
  70. "rustls-tls-native-roots",
  71. ] }
  72. [target.'cfg(target_arch = "wasm32")'.dependencies]
  73. tokio = { version = "1.21", features = ["rt", "macros", "sync", "time"] }
  74. getrandom = { version = "0.2", features = ["js"] }
  75. [[example]]
  76. name = "mint-token"
  77. required-features = ["wallet"]
  78. [[example]]
  79. name = "p2pk"
  80. required-features = ["wallet"]
  81. [[example]]
  82. name = "wallet"
  83. required-features = ["wallet"]
  84. [[example]]
  85. name = "proof-selection"
  86. required-features = ["wallet"]
  87. [dev-dependencies]
  88. rand = "0.8.5"
  89. bip39 = "2.0"
  90. tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
  91. criterion = "0.5.1"
  92. [[bench]]
  93. name = "dhke_benchmarks"
  94. harness = false