| 12345678910111213141516171819202122232425262728293031323334353637 |
- [package]
- name = "darkfi-sdk"
- version = "0.3.0"
- homepage = "https://dark.fi"
- description = "SDK used for developing smart contracts on DarkFi"
- authors = ["Dyne.org foundation <foundation@dyne.org>"]
- repository = "https://github.com/darkrenaissance/darkfi"
- license = "AGPL-3.0-only"
- edition = "2021"
- [dependencies.darkfi-serial]
- path = "../serial"
- features = [
- "derive",
- "pasta_curves",
- ]
- [dependencies]
- # Error handling
- thiserror = "1.0.37"
- # Encoding
- bs58 = "0.4.0"
- # Cryptography
- blake3 = "1.3.1"
- halo2_gadgets = "0.2.0"
- incrementalmerkletree = "0.3.0"
- pasta_curves = "0.4.0"
- # Misc
- lazy_static = "1.4.0"
- subtle = "2.4.1"
- [dev-dependencies]
- halo2_proofs = "0.2.0"
- rand = "0.8.5"
|