Cargo.toml 695 B

12345678910111213141516171819202122232425262728293031323334353637
  1. [package]
  2. name = "darkfi-sdk"
  3. version = "0.3.0"
  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. [dependencies.darkfi-serial]
  11. path = "../serial"
  12. features = [
  13. "derive",
  14. "pasta_curves",
  15. ]
  16. [dependencies]
  17. # Error handling
  18. thiserror = "1.0.37"
  19. # Encoding
  20. bs58 = "0.4.0"
  21. # Cryptography
  22. blake3 = "1.3.1"
  23. halo2_gadgets = "0.2.0"
  24. incrementalmerkletree = "0.3.0"
  25. pasta_curves = "0.4.0"
  26. # Misc
  27. lazy_static = "1.4.0"
  28. subtle = "2.4.1"
  29. [dev-dependencies]
  30. halo2_proofs = "0.2.0"
  31. rand = "0.8.5"