Cargo.toml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. [package]
  2. name = "cdk"
  3. version = "0.4.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"]
  14. # We do not commit to a MSRV with swagger enabled
  15. swagger = ["mint", "dep:utoipa"]
  16. wallet = ["dep:reqwest"]
  17. bench = []
  18. [dependencies]
  19. async-trait = "0.1"
  20. anyhow = { version = "1.0.43", features = ["backtrace"] }
  21. bitcoin = { version= "0.32.2", features = ["base64", "serde", "rand", "rand-std"] }
  22. ciborium = { version = "0.2.2", default-features = false, features = ["std"] }
  23. cbor-diag = "0.1.12"
  24. lightning-invoice = { version = "0.32.0", features = ["serde", "std"] }
  25. once_cell = "1.19"
  26. regex = "1"
  27. reqwest = { version = "0.12", default-features = false, features = [
  28. "json",
  29. "rustls-tls",
  30. "rustls-tls-native-roots",
  31. "socks",
  32. ], optional = true }
  33. serde = { version = "1", default-features = false, features = ["derive"] }
  34. serde_json = "1"
  35. serde_with = "3"
  36. tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] }
  37. thiserror = "1"
  38. futures = { version = "0.3.28", default-features = false, optional = true }
  39. url = "2.3"
  40. utoipa = { version = "4", optional = true }
  41. uuid = { version = "1", features = ["v4"] }
  42. # -Z minimal-versions
  43. sync_wrapper = "0.1.2"
  44. bech32 = "0.9.1"
  45. [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
  46. tokio = { version = "1.21", features = [
  47. "rt-multi-thread",
  48. "time",
  49. "macros",
  50. "sync",
  51. ] }
  52. [target.'cfg(target_arch = "wasm32")'.dependencies]
  53. tokio = { version = "1.21", features = ["rt", "macros", "sync", "time"] }
  54. getrandom = { version = "0.2", features = ["js"] }
  55. instant = { version = "0.1", features = ["wasm-bindgen", "inaccurate"] }
  56. [[example]]
  57. name = "mint-token"
  58. required-features = ["wallet"]
  59. [[example]]
  60. name = "p2pk"
  61. required-features = ["wallet"]
  62. [[example]]
  63. name = "wallet"
  64. required-features = ["wallet"]
  65. [[example]]
  66. name = "proof-selection"
  67. required-features = ["wallet"]
  68. [dev-dependencies]
  69. rand = "0.8.5"
  70. bip39 = "2.0"
  71. criterion = "0.5.1"
  72. [[bench]]
  73. name = "dhke_benchmarks"
  74. harness = false