Cargo.toml 1020 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. [package]
  2. name = "darkfi-sdk"
  3. version = "0.4.1"
  4. homepage = "https://dark.fi"
  5. description = "SDK used for developing smart contracts on DarkFi"
  6. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  7. repository = "https://github.com/darkrenaissance/darkfi"
  8. license = "AGPL-3.0-only"
  9. edition = "2021"
  10. [lib]
  11. doctest = false
  12. [dependencies]
  13. # Error handling
  14. thiserror = "1.0.40"
  15. # Serialization
  16. darkfi-serial = {version = "0.4.1", path = "../serial", features = ["derive", "pasta_curves"]}
  17. # Encoding
  18. bs58 = "0.4.0"
  19. # Cryptography
  20. blake2b_simd = "1.0.1"
  21. blake3 = "1.3.3"
  22. chacha20poly1305 = "0.10.1"
  23. halo2_gadgets = "0.3.0"
  24. incrementalmerkletree = "0.3.1"
  25. num-bigint = "0.4.3"
  26. num-traits = "0.2.15"
  27. pasta_curves = "0.5.1"
  28. rand_core = "0.6.4"
  29. sha2 = "0.10.6"
  30. # Misc
  31. lazy_static = "1.4.0"
  32. subtle = "2.4.1"
  33. [dev-dependencies]
  34. halo2_proofs = "0.3.0"
  35. halo2_gadgets = {version = "0.2.0", features = ["test-dependencies"]}
  36. rand = "0.8.5"
  37. [patch.crates-io]
  38. halo2_proofs = {git="https://github.com/parazyd/halo2", branch="v3"}